[Issue 17669] VisualD v0.44.2.exe may contain a trojan

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17669

greenify  changed:

   What|Removed |Added

 CC||greeen...@gmail.com

--- Comment #1 from greenify  ---
This is a known problem. please report directly at your anti virus vendor -
they take user reports more serious.

--


[Issue 17669] New: VisualD v0.44.2.exe may contain a trojan

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17669

  Issue ID: 17669
   Summary: VisualD v0.44.2.exe may contain a trojan
   Product: D
   Version: D2
  Hardware: x86_64
OS: Windows
Status: NEW
  Severity: normal
  Priority: P1
 Component: visuald
  Assignee: nob...@puremagic.com
  Reporter: shish...@hotmail.com

When I dowloaded VisualD v 0.44.2 
My anti virus (McAfee) detected this trojan 

Artemis!12AF848C9332 

Is this a known issue, or the file really infected

--


[Issue 17596] dmd d 2.073.2 and 2.074.1 interim generated dmd segfaults on FreeBSD 12-CURRENT

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17596

--- Comment #9 from Vladimir Panteleev  ---
Alright, so how about:

- We add getosreldate and INO64_FIRST to druntime
- We add both the old and new struct definitions
- We add a stat wrapper which,when getosreldate() < INO64_FIRST, translates the
old struct to the new struct and returns it.

--


[Issue 17668] New: regex(q"<[^]>")

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17668

  Issue ID: 17668
   Summary: regex(q"<[^]>")
   Product: D
   Version: D2
  Hardware: x86_64
OS: Linux
Status: NEW
  Severity: normal
  Priority: P1
 Component: phobos
  Assignee: nob...@puremagic.com
  Reporter: unde...@gmail.com

regex(q"<[^]>") leads to assertion, but user input may lead only to exception.

--


[Issue 17667] New: regex([r".", r"[\(\{[\]\}\)]"]);

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17667

  Issue ID: 17667
   Summary: regex([r".", r"[\(\{[\]\}\)]"]);
   Product: D
   Version: D2
  Hardware: x86_64
OS: Linux
Status: NEW
  Severity: major
  Priority: P1
 Component: phobos
  Assignee: nob...@puremagic.com
  Reporter: unde...@gmail.com

The code demonstrating not working:
https://dpaste.dzfl.pl/72a39b6bb9eb

--


[Issue 17596] dmd d 2.073.2 and 2.074.1 interim generated dmd segfaults on FreeBSD 12-CURRENT

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17596

--- Comment #8 from Cy Schubert  ---
Sorry for not replying sooner, way too many projects on the go here.

Here is how kib supported older apps prior to inode64:

https://svnweb.freebsd.org/base?view=revision=318736

Forward compatibility:

https://svnweb.freebsd.org/base?view=revision=320278

Stat.c, below, relies on versioned symbols (see
https://svnweb.freebsd.org/base/head/lib/libprocstat/Symbol.map?r1=318736=318735=318736)

int
stat(const char *path, struct stat *sb)
{
struct freebsd11_stat stat11;
int rv;

if (__getosreldate() >= INO64_FIRST)
return (__sys_fstatat(AT_FDCWD, path, sb, 0));
rv = syscall(SYS_freebsd11_stat, path, );
if (rv == 0)
__stat11_to_stat(, sb);
return (rv);
}

IMO implementing it in this way would require architectural changes to D's
implementation of some syscalls, similar to how Perl might interface with the
O/S. Discussing this with the maintainer of the ldc port, the short term
solution might be for he and I to patch the ports, however that would be a
fragile solution as depending on the options used at FreeBSD build time, stat_t
and dirent_t may vary.

--


[Issue 15537] Private function is not accessible from other module when compiling with -debug flag

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=15537

--- Comment #2 from Roman  ---
(In reply to Vladimir Panteleev from comment #1)
> The reason why this doesn't compile with -debug is mentioned briefly in the
> assumeSorted documentation:
> 
> > In debug mode, a few random elements of r are checked for sortedness. 
> 
> -- https://dlang.org/library/std/range/assume_sorted.html
> 
> Thus, std.range is failing to use your private compare function when
> attempting to perform this sortedness check.
> 
> Note that even if the code compiled without -debug, the result would still
> not be useful, as you would not be able to pass the resulting SortedRange
> e.g. to std.algorithm.searching.find. It would fail with the same problem,
> being unable to access your private opCmp function.
> 
> Whether symbols passed by alias parameter should be exempted from visibility
> checks is a separate matter.
> 
> You can work around this problem by making the comparison function public,
> but also wrapping it inside a private struct:
> 
> private struct Hidden
> {
> public static bool myCmp(Data a, Data b) {
> return a[0] < b[0];
> }
> }
> 
> auto bar() {
> return [Data(1, "one"), Data(2, "two")].assumeSorted!(Hidden.myCmp);
> }

Back then I solved this issue by using named enum string variables.
Both solutions are hacks for sure. I think the changes to the compiler are
required.

--


[Issue 6004] std.range.unzip()

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=6004

Seb  changed:

   What|Removed |Added

 CC||greensunn...@gmail.com

--- Comment #5 from Seb  ---
> For forward ranges of tuples "unzip" can be implemented in a few lines. E.g.

That's pretty sweet! I actually built something on top of this and was about to
submit it:

https://github.com/dlang/phobos/compare/master...wilzbach:unzip

But then I realized that std.range.transversal already solves this nicely:

import std.algorithm, std.range, std.stdio;
int[][] x = new int[][3];
x[0] = [1, 2, 3];
x[1] = [4, 5, 6];
x.transversal(1).writeln; // [2, 5]
x.front.walkLength.iota.map!(i => transversal(x, i)).writeln; // [[1, 4], [2,
5], [3, 6]]

Plat with this online: https://is.gd/YYCgPk

So I'm inclined to close this as WORKSFORME - other opionions?

--


[Issue 13534] std.variant can violate memory safety

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13534

--- Comment #5 from github-bugzi...@puremagic.com ---
Commit pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/38a29b2d56e91404bfe860b54b699783347b0ea5
remove "@trusted:" from std.variant

--


[Issue 12983] overload not recognized depending on order of declaration

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=12983

--- Comment #7 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/dmd

https://github.com/dlang/dmd/commit/ac443bd294103807f047ed9d74a05755f4e08f35
fix Issue 12983 - overload not recognized depending on order of declaration

https://github.com/dlang/dmd/commit/dc11b92c6a3dce3f041e665c721cc83f5c0f5086
Merge pull request #4430 from 9rnsr/fix12983

https://github.com/dlang/dmd/commit/b96b82c277c9a6f236cd0cafe27e9fdc4a22b910
Move issue 12983 test case to compilable/testfwdref.d

--


[Issue 11738] partialShuffle actually shuffles the entire input

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=11738

--- Comment #8 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/7329ef7eaee2e823ff73683b9032e7fd31971b2e
reverted partialShuffle to match its documentation (issue 11738)

https://github.com/dlang/phobos/commit/ae6ec9c2bdaca78e626ae0feb5fc299e499d8b9c
Merge pull request #3302 from GassaFM/issue_11738

--


[Issue 14211] Compiler should devirtualize calls to members of final class

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14211

--- Comment #5 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/dmd

https://github.com/dlang/dmd/commit/1f87794054502ce0b852fb0f1c6bd9a38dfad141
fix Issue 14211 - Compiler should devirtualize calls to members of final class

https://github.com/dlang/dmd/commit/fdafca92dd937d70f295c8b5bb1a713f88bd04fc
Merge pull request #4427 from 9rnsr/fix14211

--


[Issue 14586] can't get an immutable value from a const std.variant.Variant

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14586

--- Comment #2 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/095770983f1fb9f7980a06c8e88014313510a4b2
fix issue 14586 - can't get an immutable value from a const std.variant.Variant

https://github.com/dlang/phobos/commit/4e0347a59c0260f78d1c1ea4ee1a81bc89c93570
Merge pull request #3284 from aG0aep6G/variant

--


[Issue 14198] [REG2.067a] Link failure with Variant

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14198

--- Comment #15 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/646dc1969c78fdf43b981b973783efba08b11354
fix Issue 14198 - [REG2.067a] Link failure with Variant

https://github.com/dlang/phobos/commit/8598139bde54ffa8e0888b965f11e3ac79914661
Merge pull request #3038 from WalterBright/fix14198

https://github.com/dlang/phobos/commit/77b9b31bb6484c87e45b1df787cd58a4452d05f2
fixup #3038 add reference to bugzilla issue 14198

https://github.com/dlang/phobos/commit/74d2c8aa799297ef404055390cbf24c04c94248c
Merge pull request #3044 from MartinNowak/fixup3038

--


[Issue 14289] WindowsException should not attempt to parse code 0

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14289

--- Comment #3 from github-bugzi...@puremagic.com ---
Commit pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/a2102aa66c2145a4dfe2ec2dfd1c171530d2e3a7
fix Issue 14289 - WindowsException should not attempt to parse code 0

--


[Issue 14200] C++ mangling issue with expanded tuples

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14200

--- Comment #5 from github-bugzi...@puremagic.com ---
Commit pushed to dmd-cxx at https://github.com/dlang/dmd

https://github.com/dlang/dmd/commit/1c24d35583b1d49045013d7451c92c0752ba55e8
Merge pull request #4421 from Ingrater/fix141920

--


[Issue 5770] Template constructor bypass access check

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=5770

--- Comment #9 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/981bb7be7d84a2bd3b19e19c4304b27909e10f8a
Supplemental fix for issue 5770

https://github.com/dlang/phobos/commit/4ffdb997337452e74b656d48218ac8a1390df90c
Merge pull request #3151 from 9rnsr/fix5770

--


[Issue 14526] GetOptException DDOC needs cleanup

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14526

--- Comment #3 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/c1276c12dd65d4f4080ac1d642b17936dc2b35d3
fix Issue 14526 - GetOptException DDOC needs cleanup

https://github.com/dlang/phobos/commit/307ba5fb9dd16d88d84e3ea7249bed03476c1c3d
Merge pull request #3256 from CyberShadow/pull-20150505-080610-14526

--


[Issue 13996] Function for returning a temporary file with a randomly generated name where the name can be accessed

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13996

--- Comment #15 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/e3e9f2965f438170157338767700bc1d7292dd67
Implement issue# 13996. Add File.scratchFile.

https://github.com/dlang/phobos/commit/8a65ff8db444f35f6322debbb970166b8c587beb
Merge pull request #2956 from jmdavis/tempFile

https://github.com/dlang/phobos/commit/8087f354414ed39f23eec94049a1a154fcbb412c
Revert "Implement issue# 13996. Add File.tempFile."

https://github.com/dlang/phobos/commit/c8c5a3255def4274dcc807e479f5aca1f8177cdf
Merge pull request #3273 from D-Programming-Language/revert-2956-tempFile

--


[Issue 14718] float parsing depends on libc strtold precision

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14718

--- Comment #5 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/eaeeccd4ac4845d07331ef6044e2050aca14b90a
workaround Issue 14718 - float parsing depends on platform strtold

https://github.com/dlang/phobos/commit/53dbbaa2bc18723a0a6d67a78fe0eb517430a50a
Merge pull request #3433 from MartinNowak/workaround14718

--


[Issue 14685] [REG2.067] Silent incorrect behavior with enforce and custom exception

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14685

--- Comment #6 from github-bugzi...@puremagic.com ---
Commit pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/8c5bd6347b05867d51f61e08f4c77e8313103ddd
Merge pull request #3435 from 9rnsr/fix14685

--


[Issue 14096] ICE in toir.c: 187

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14096

--- Comment #5 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/dmd

https://github.com/dlang/dmd/commit/3fb5ef65a1ee69c4198a4ed8b52df515f91370fc
fix Issue 14096 - ICE in toir.c: 187

https://github.com/dlang/dmd/commit/0e0a328fe8bd07e753c7869e138382cb64f0faea
Merge pull request #4424 from 9rnsr/fix14096

--


[Issue 14135] std.uuid.randomUUID breaks @safety

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14135

--- Comment #4 from github-bugzi...@puremagic.com ---
Commit pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/9010ecd4b0942e0eb0c37c073d4d53f1984f7872
Merge pull request #2971 from monarchdodra/14135

--


[Issue 13280] `this.sizeof` rejected as static array length in some cases

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13280

--- Comment #4 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/dmd

https://github.com/dlang/dmd/commit/cfde17106f88f471ab8c3188fc58d63723682918
fix Issue 13280 - `this.sizeof` rejected as static array length in some cases

https://github.com/dlang/dmd/commit/e5fdbf0975fde0a0bfcfad0d2dc24fa2576f437e
Merge pull request #4431 from 9rnsr/fix13280

--


[Issue 14210] invalid merging of template instances

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14210

--- Comment #9 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/dmd

https://github.com/dlang/dmd/commit/43b3f1ed2451e9d8980e271cba2d5e58acdc4707
fix Issue 14210 - invalid merging of template instances

https://github.com/dlang/dmd/commit/00cbcb3dec972a85bf402677c67f0f3d93a99ed4
Merge pull request #4426 from 9rnsr/fix14210

--


[Issue 14544] isForwardRange failed to recognise valid forward range

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14544

--- Comment #13 from github-bugzi...@puremagic.com ---
Commit pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/5494539c9d6c7b4414f0cabc5b79e9fcf792410b
Merge pull request #3276 from schveiguy/fixforwardrange

--


[Issue 14585] destructor called on garbage in std.variant

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14585

--- Comment #2 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/15712f6e6ccc68f86142d75d5f659ca746e8fabe
fix issue 14585 - destructor called on garbage in std.variant

https://github.com/dlang/phobos/commit/4e0347a59c0260f78d1c1ea4ee1a81bc89c93570
Merge pull request #3284 from aG0aep6G/variant

--


[Issue 14469] file.readText on Win64 doesn't work for files > 4GB.

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14469

--- Comment #4 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/95fd043dc6d0c945c171f8874761e1399a11252c
Fix Issue 14469 - read > 4GB file on Windows x64.

https://github.com/dlang/phobos/commit/75f068773ccc0750c2cf865fe2f621a9947723f3
Merge pull request #3218 from artemalive/issue_14469

--


[Issue 14575] compile error with std.range.refRange when front/back isn't implicitly convertible from const to mutable

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14575

--- Comment #3 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/08ea0476a5105c6d70e34defb46a66d6ebd28f47
fix Issue 14575 - compile error with std.range.refRange when front/back isn't
implicitly convertible from const to mutable

https://github.com/dlang/phobos/commit/0a8c30ef8444121d179dae2285e7c0cf1a593111
Merge pull request #3274 from aG0aep6G/14575

--


[Issue 14422] std.process: Pipes do not append to files on Win64

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14422

--- Comment #4 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/b28eb9fab8d27a7134daabf33544198bb4fbd02b
fix Issue 14422 - std.process: Pipes do not append to files on Win64

https://github.com/dlang/phobos/commit/eecc989b2c7901d1dce40c761329920b690da0c0
Merge pull request #3160 from CyberShadow/pull-20150407-122150

--


[Issue 13320] Redundant error messages for missing operation on struct instance

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13320

--- Comment #4 from github-bugzi...@puremagic.com ---
Commit pushed to dmd-cxx at https://github.com/dlang/dmd

https://github.com/dlang/dmd/commit/0bbdb88c7aacab5837ed5d1cddb1199a7b6182f9
fix Issue 13320 - Redundant error messages for missing operation on struct
instance

--


[Issue 3841] silent implicit cast from floating point to integral in += etc. operators

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=3841

--- Comment #11 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/8558b22cfe818b48c6b5efdb1a0439cf6c7e9fa7
Remove a bad cast (issue 3841). Functional noop.

https://github.com/dlang/phobos/commit/4ba5fc4d581e577eb09c1ccf8604f40a02083651
Merge pull request #3278 from legrosbuffle/fix3841_phobos

--


[Issue 14192] Access Violation when assigning to shared AA

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14192

--- Comment #12 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/dmd

https://github.com/dlang/dmd/commit/5afc1177551fa8f6e43bb1fc499698eaab41655a
fix Issue 14192 - Access Violation when assigning to shared AA

https://github.com/dlang/dmd/commit/4091ddc1af08f3a65512e41a19ffda06335471c2
Merge pull request #4420 from MartinNowak/fix14192

--


[Issue 14195] Ice when mangling templated function parameter extern(C++) function

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14195

--- Comment #5 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/dmd

https://github.com/dlang/dmd/commit/c4ef4296e217337de4d4137bae57bfda710454e2
Fixed bug 14195: Added C++ mangling for passing function signatures as template
parameters.

https://github.com/dlang/dmd/commit/a68e1c1d4a08b029490c0c832920e0fdb12d7093
Merge pull request #4419 from Ingrater/fix14195

--


[Issue 13009] [REG2.064] inout overload conflicts with non-inout when used via alias this

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13009

--- Comment #21 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/dmd

https://github.com/dlang/dmd/commit/b4f6725e3c94c302d5b161a6d7f8dff271cb8f64
fix Issue 13009 - inout overload conflicts with non-inout when used via alias
this

https://github.com/dlang/dmd/commit/d30acc5d9c4a626711c3462ff3d42b9f105cd169
Merge pull request #4417 from 9rnsr/fix13009

--


[Issue 14548] std.stdio.File should have sync() method (fsync/FlushFileBuffers wrapper)

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14548

--- Comment #2 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/a5e1ae418aca2f3e9dc9854ffd71976c0139f440
fix Issue 14548 - std.stdio.File should have sync() method
(fsync/FlushFileBuffers wrapper)

https://github.com/dlang/phobos/commit/4567cf6c751a7b2367f5d4a43a103f0f13c7c0cf
Merge pull request #3258 from CyberShadow/pull-20150505-180120-std-stdio-sync

--


[Issue 12702] [FixIncluded] std.container.RedBlackTree's in operator is not const

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=12702

--- Comment #6 from github-bugzi...@puremagic.com ---
Commit pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/2065983d039769ccbc8a0880c908237990dca27e
const RedBlackTree.opBinaryRight

--


[Issue 14203] Return of floating point values from extern(C++) member functions does not match dmc

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14203

--- Comment #4 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/dmd

https://github.com/dlang/dmd/commit/c73f7fefb952adbf8f5bfc28d87854926033
Add workaround for issue 14203

https://github.com/dlang/dmd/commit/b1ace291ac3078b55f9895177fe13b3f537874d9
Merge pull request #4423 from yebblies/floatworkaround

--


[Issue 14290] is-expression accepts instantiation of already instantiated template

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14290

--- Comment #5 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/af1db6dba1c8dfe5044f0364c8d4c51aaa7ba1be
Supplemental fix for issue 14290

https://github.com/dlang/phobos/commit/31f4928ad691397155ff1d4019de7a28fb8bb5a9
Merge pull request #3057 from 9rnsr/fix14290

--


[Issue 14535] std.net.curl.CurlException should include status line

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14535

--- Comment #3 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/81b4dcd17521ffdfbf39deb7dcd0a76686da3c44
fix Issue 14535 - std.net.curl.CurlException should include status line

https://github.com/dlang/phobos/commit/5eb7b54dc1d0d9e2e34ecd2b1f032a3d5f7574de
Merge pull request #3257 from CyberShadow/pull-20150505-091936-curl

--


[Issue 14174] Weird IFTI deduction failure

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14174

--- Comment #5 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/dmd

https://github.com/dlang/dmd/commit/0c853825e5d3ee0d8cd616a63eca61675b183f63
fix Issue 14174 - Weird IFTI deduction failure

https://github.com/dlang/dmd/commit/49d25b3e942e87ac888dfc08450d8fabe6b7484f
Merge pull request #4408 from 9rnsr/fix14174

--


[Issue 14457] Algebraic does not allow assignment from subset type

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14457

--- Comment #2 from github-bugzi...@puremagic.com ---
Commit pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/5a9c0bcd6bb60b32eca098fbbaf46746a0cbcfb4
Fixes 14457 (VariantN opAssign subset variant)

--


[Issue 14231] findRoot fails with trivial bounds

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14231

--- Comment #2 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/5b8cf5996130507555b26a34c901e9eb9b45238d
fix Issue 14231

https://github.com/dlang/phobos/commit/27d3a41158638715e0842b2180023feed03f9f48
Merge pull request #3028 from 9il/fr

--


[Issue 14079] Variable templates' documentation not generated.

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14079

--- Comment #3 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/3e7ad6b34183b3b6fbe2c765a69a85dfb711ad71
Fix issue 14079

https://github.com/dlang/phobos/commit/c775917a341d25a308a39ebfad5c8ea9c44dcd90
Merge pull request #3212 from nomad-software/issue_14079

--


[Issue 12666] @nogc std.array.front, popFront, and more

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=12666

--- Comment #5 from github-bugzi...@puremagic.com ---
Commit pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/0842fc7841b9c3db558681717c2d8b4da1479ce6
@nogc for std.range.primitives.{empty,save,popFront,popBack,front,back}

--


[Issue 14432] move construction for RefCounted

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14432

--- Comment #2 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/a6a6870beb69537f2ccd3d50289594ebae30ad15
fix Issue 14432 - move construction for RefCounted

https://github.com/dlang/phobos/commit/f7498ad8ec147114b1bcbc61d0e4db3e033417f5
Merge pull request #3171 from MartinNowak/refCounted

--


[Issue 14396] [REG2.066] compile error std.conv.parse!int with input range

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14396

--- Comment #4 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/99da04d9af3a4e44d8576445c06d701fe6fdada4
fix Issue 14396 - compile error std.conv.parse!int with input range (dmd2.067)

https://github.com/dlang/phobos/commit/99956f90609d1d23c5612ba6d4f58b8f951e914d
Merge pull request #3183 from aG0aep6G/14396-stable

--


[Issue 14408] std.process: Can't start interactive process from Windows GUI application

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14408

--- Comment #2 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/237a1c14776f67c14f7e14917198bbc41428fa28
fix Issue 14408 - std.process: Can't start interactive process from Windows GUI
application

https://github.com/dlang/phobos/commit/cdd73be74cdb5a2e313e17dac78470c91a54949a
Merge pull request #3148 from CyberShadow/pull-20150405-052650-process-14408

--


[Issue 12891] add atomicFetchAdd and atomicFetchSub to core.atomic

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=12891

--- Comment #14 from github-bugzi...@puremagic.com ---
Commit pushed to dmd-cxx at https://github.com/dlang/druntime

https://github.com/dlang/druntime/commit/c5f10192bb88255beec572bfc2e3510267ecd766
Merge pull request #1208 from jadbox/fetchmod

--


[Issue 14288] std.windows.registry should use std.windows.syserror

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14288

--- Comment #3 from github-bugzi...@puremagic.com ---
Commit pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/3024e3d3be066a055031264ad4381c6117c3425d
fix Issue 14288 - std.windows.registry should use std.windows.syserror

--


[Issue 14401] typeid(shared X).init is empty for class types

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14401

--- Comment #8 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/9f68938b8f3420d676e5231867c82101ef5d1c81
Supplemental fix for issue 14401 - Deal with the type change of
typeid(ClassType).init to const(void)[]

https://github.com/dlang/phobos/commit/3ffc006c20d759ad7197eae879cc894f7bb5efbb
Merge pull request #3143 from 9rnsr/fix14401

--


[Issue 13590] [Enh] Add std.algorithm.iterate

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13590

--- Comment #6 from github-bugzi...@puremagic.com ---
Commit pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/2621b7fe7e60820dcbc4d2b51c9364411f07589e
Issue 13590

--


[Issue 14373] std.range.refRange doesn't work on mere input ranges

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14373

--- Comment #3 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/ca4e7d22ecdc53d1529fd88c71ff94198ac44303
fix Issue 14373 - std.range.refRange doesn't work on mere input ranges

https://github.com/dlang/phobos/commit/f4894c6302286c95fc63b48bdffeb1d658f5cd7a
Merge pull request #3123 from aG0aep6G/14373

--


[Issue 14300] [2.067-rc1] DList casting to base type is broken

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14300

--- Comment #6 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/a4f1cb07d2d0a5efe8f1ad9684c50f89a6080d37
fix Issue 14300 - DList casting to base type is broken

https://github.com/dlang/phobos/commit/602dff55a78029930a918b5f96d79f7697bfd65c
Merge pull request #3082 from MartinNowak/fix14300

fix Issue 14300 - DList casting to base type is broken

--


[Issue 14253] [REG2.067b3] std.traits.ParameterStorageClassTuple gives compiler errors when encountering 'return' functions

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14253

--- Comment #6 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/4f8125fb6d2ffe1bd87f3d34d19ab85ec5d6d05b
fix Issue 14253 - [REG2.067b3] std.traits.ParameterStorageClassTuple gives
compiler errors when encountering 'return' functions

https://github.com/dlang/phobos/commit/40cd3b513198bd169c06bd6364f4ebfdd3bc0aa5
Merge pull request #3050 from WalterBright/fix14253

--


[Issue 14368] stdio.rawRead underperforms stdio

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14368

--- Comment #2 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/e741c24f8578498be6b11bcc76e150b4f001be3a
Fix Issue 14368 - rawRead performance

https://github.com/dlang/phobos/commit/4d30c1d15d47eee3f4341feb3ee25eb0102fb6ae
Merge pull request #3127 from charles-cooper/issue_14368

--


[Issue 13681] @safe empty writeln

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13681

--- Comment #2 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/e601077b8618c595fa51807a85c54f8c4e32ca9a
make 0-arg writeln @trusted: Fix Issue 13681

https://github.com/dlang/phobos/commit/38453e82adfdcba8d5d817fd8404acf8edeb04f3
Merge pull request #3046 from John-Colvin/patch-13

--


[Issue 6607] critical_.d and critical.c use double check locking the wrong way

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=6607

--- Comment #7 from github-bugzi...@puremagic.com ---
Commit pushed to dmd-cxx at https://github.com/dlang/druntime

https://github.com/dlang/druntime/commit/0b41a6205361382930272813a5f6a2baae0c456a
cleanup and rewrite rt.critical_

--


[Issue 14301] [2.067-rc1] Private symbols of module conflicts with public from another

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14301

--- Comment #20 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/de7100e7f3fc70f530554b5c09f4dc0e6e2195da
fix Issue 14301 - private symbol Cache conflicts with client code

https://github.com/dlang/phobos/commit/c856128dd84787989291ab38873181f177d1aa89
Merge pull request #3081 from MartinNowak/fix14301

--


[Issue 14566] [2.067] core.demangle: New Nj attribute not handled

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14566

--- Comment #7 from github-bugzi...@puremagic.com ---
Commit pushed to dmd-cxx at https://github.com/dlang/druntime

https://github.com/dlang/druntime/commit/482d8fc456e7089edb6811ac7e1bc5dbef82296c
Issue 14566 - Return function attribute not handled in core.demangle

--


[Issue 14213] Strange deprecated message in std.typecons.Proxy with using method

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14213

--- Comment #6 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/6a8345bbc6a06cc86f183674d03160797c551c85
fix Issue 14213 - Strange deprecated message in std.typecons.Proxy with using
method

https://github.com/dlang/phobos/commit/50c65e57fb269d14990d54154400408851c877a6
Merge pull request #3043 from 9rnsr/fix14213

--


[Issue 14297] [2.067-rc1] Broken links in phobos/index.html

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14297

--- Comment #6 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/1bdbefa889d55504f5f76127f959e37f5cd94faa
fix Issue 14297 - Broken links in phobos/index.html

https://github.com/dlang/phobos/commit/272cc8f3907212197ae25f000314005be12ba90a
Merge pull request #3059 from MartinNowak/fix14297

--


[Issue 14765] [Reg2.068.0] Rangified functions no longer accept types that implicitly cast to string

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14765

--- Comment #7 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/31c963070245c2c89ae287283f49fc77425c45df
add std.traits.isAutodecodableString() to fix Issue 14765

https://github.com/dlang/phobos/commit/39806a85f5cd0f3280519277a5943e3485abd797
Merge pull request #3512 from MartinNowak/fix14765

--


[Issue 14230] [REG2.067b2] std.array.join misses the first element which is empty string

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14230

--- Comment #6 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/43e56d57a51ef6a3240a459d3e6068fc4a9292a5
Fix Issue 14230 - std.array.join misses the first element which is empty string

https://github.com/dlang/phobos/commit/b43a7b8b6095e19d93d479942c084e6f588adc3d
Merge pull request #3027 from sinkuu/fix_14230

--


[Issue 14197] "replace" was moved from std.string without alias added

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14197

--- Comment #11 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/e5eea9af43aa6836a3bfd48cc02706facb60dae8
fix Issue 14197 - replace was removed from std.string

https://github.com/dlang/phobos/commit/e15c5a260a0e3907e7d4606b4da9fde7d1d910eb
Merge pull request #3055 from MartinNowak/fix14197

--


[Issue 14282] executeShell should use sh and ignore the SHELL env variable

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14282

--- Comment #11 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/a524a3571b18e440c4dd751fcf4e2d00b834fb22
fix Issue 14282 - executeShell should use sh and ignore the SHELL env variable

https://github.com/dlang/phobos/commit/865f36fccea8c0d95e31624aea22902def150fa1
Merge pull request #3051 from MartinNowak/fix14282

--


[Issue 14626] [REG2.066] byValue doesn't work with inout AA

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14626

--- Comment #8 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/druntime

https://github.com/dlang/druntime/commit/6d57c68df1f72e9416548ad450e56a16bb1fdb90
fix Issue 14626 - byValue doesn't work with inout AA

https://github.com/dlang/druntime/commit/ad900eb3cc38397c4fa3a0a805793f002d03abc7
Merge pull request #1326 from 9rnsr/fix14626

--


[Issue 14573] [REG2.067] Extreme memory usage when `synchronized( object )` is used

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14573

--- Comment #11 from github-bugzi...@puremagic.com ---
Commit pushed to dmd-cxx at https://github.com/dlang/druntime

https://github.com/dlang/druntime/commit/d50aba0083b03659f60c3f157a674d9846d8228f
fix Issue 14573 - classes without destructor leak monitor/mutex

--


[Issue 13649] uniform01 Assertion failure

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13649

--- Comment #4 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/c561951994e04293041906ee468b502806680e20
Fix Issue 13649 - uniform01 Assertion failure

https://github.com/dlang/phobos/commit/2679e447739cb5190b2cd2fd61a36979752478da
Merge pull request #2969 from e10s/patch-8

--


[Issue 14617] PTHREAD_MUTEX_INITIALIZER does not work on OSX

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14617

--- Comment #11 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/druntime

https://github.com/dlang/druntime/commit/ab78a534dc017efecbe86f79f5d4559b85ef8619
fix issue 14617 - Define correct values for PTHREAD_MUTEX_INITIALIZER and
PTHREAD_ONCE_INIT.

https://github.com/dlang/druntime/commit/19f3f0db648b6361248e2c53e00fcb3794c2521b
Merge pull request #1285 from schveiguy/pthreadmutexosx

--


[Issue 14233] [REG2.067b2] Can't build Algebraic!(This[]) anymore

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14233

--- Comment #6 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/fcc1aab7884bb460de8fce47a3a4ba5fd0e8d785
fix Issue 14233 - Can't build Algebraic!(This[]) anymore

https://github.com/dlang/phobos/commit/23702b29fee08c45fcde098f6664a8277e4a5314
Merge pull request #3030 from 9rnsr/fix14233

--


[Issue 14183] Updates to groupBy

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14183

--- Comment #7 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/c6520969eaa317d373bc288aec49e9e2ca077dc4
Fix Issue 14183 - Changes to groupBy

https://github.com/dlang/phobos/commit/fa297af0e69f5b097fad81263da74d2033fd2541
Merge pull request #3005 from Poita/Issue14183

https://github.com/dlang/phobos/commit/afd30b41b09b9298f56ccba19068f1fbcab6fbb5
Merge pull request #3005 from Poita/Issue14183

--


[Issue 6586] feqrel for const values too

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=6586

--- Comment #8 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/09ebc581ec022d0e1091d47887aab26366df79e0
rework and try to fix Issue 6586

https://github.com/dlang/phobos/commit/62acd72cec052169e7eb56d1c63c860ae92f9ef9
Merge pull request #3017 from 9il/frexp

--


[Issue 14223] TimSort algorithm is incorrect

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14223

--- Comment #4 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/323b512596470227893f3682474db2b4df36a673
Fix Issue 14223

https://github.com/dlang/phobos/commit/4abe95ef5b9f67ae072147befdda9200aa0c2061
Fix Issue 14223

https://github.com/dlang/phobos/commit/35bf4918ccbb5e3e1cdaf38e84d1d19b5365045d
Merge pull request #3029 from Xinok/issue_14223

--


[Issue 13390] [REG2.066] std.range.cycle ctor fails when empty input passed

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13390

--- Comment #15 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/568cd18b43fb2fe98a5eb62f06a00648450d7068
Fix Issue 13390 - Be explicit about non-empty input and fail early

https://github.com/dlang/phobos/commit/4f3c90aaa3f47404647993eab2e92b53a9bfa4b9
Merge pull request #3001 from kuettler/fix13390

--


[Issue 14206] cdouble is broken

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14206

--- Comment #3 from github-bugzi...@puremagic.com ---
Commit pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/efabbd365e4b46337135240f18ad96fd6d78c921
std.math №3: conj for double and float

--


[Issue 14567] [2.067] core.demangle: New Nk attribute not handled

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14567

--- Comment #6 from github-bugzi...@puremagic.com ---
Commit pushed to dmd-cxx at https://github.com/dlang/druntime

https://github.com/dlang/druntime/commit/87fbb2885462f6a869161aa581efa21231d693d3
Issue 14567 - Return parameter not handled in core.demangle

--


[Issue 14212] frexp for const and immutable fails to compile

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14212

--- Comment #10 from github-bugzi...@puremagic.com ---
Commit pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/62acd72cec052169e7eb56d1c63c860ae92f9ef9
Merge pull request #3017 from 9il/frexp

--


[Issue 14744] std.range DDox page corrupted

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14744

--- Comment #9 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/9c90fad885af9cf0cbf2d0508b3eda08b0f97953
Workaround for Issue 14744 - std.range DDox page corrupted

https://github.com/dlang/phobos/commit/822f9e16f154a9d1453c3cada98f62ca26025059
Merge pull request #3450 from CyberShadow/pull-20150628-131049

--


[Issue 14565] dmd -profile produces garbled output for long-running CPU-intensive processes

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14565

--- Comment #4 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/druntime

https://github.com/dlang/druntime/commit/6ce3287415567e2c63eca8bb73b7252a5c4f4d1c
fix Issue 14565 - dmd -profile produces garbled output for long-running
CPU-intensive processes

https://github.com/dlang/druntime/commit/74e40962ed5d4563ae3e9e29a4b7ee758ae7d02b
Merge pull request #1261 from WalterBright/fix14565

--


[Issue 14194] nothrow emplace for classes needed

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14194

--- Comment #4 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/75ca200750ab4bb2de8eb1b13ecee8524704e3cc
fix Issue 14194 - nothrow emplace for classes needed

https://github.com/dlang/phobos/commit/ebb2b8ce5df68af453eea5888d8ca339fa982479
Merge pull request #2999 from MartinNowak/fix14194

--


[Issue 14746] [REG2.068a] Behavior change with struct destructor and alias this

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14746

--- Comment #7 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/druntime

https://github.com/dlang/druntime/commit/1a2290b1c36f8cdf66a9c4ce388b6a4b38ff9735
fix Issue 14746 - Behavior change with struct destructor and alias this

https://github.com/dlang/druntime/commit/2f087248923ad77014259a52695f3abda076c206
Merge pull request #1312 from 9rnsr/fix14746

https://github.com/dlang/druntime/commit/c8518f5b62ae501ea740bc1b1996230c9927c70f
fix Issue 14746 for postblitRecurse as well

https://github.com/dlang/druntime/commit/e0f2ca65b719fcc94dbd484bb9a8a0fe219ef806
Merge pull request #1313 from MartinNowak/fix14746

--


[Issue 14920] [REG2.067.0] SList.insertAfter on uninitialized list triggers assertion in _first

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14920

--- Comment #5 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/0c28c7717437b10570677994112fc874e196d26a
fix issue 14920

https://github.com/dlang/phobos/commit/aac09abf0a8f8624e81bbac4ded38b941cc768d9
Merge pull request #3557 from tosttost/issue_14920

--


[Issue 14904] [REG2.067.0] bad error message in reduce: 'Incompatible function/seed/element'

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14904

--- Comment #5 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/6579c574bbcc53944a2060f3d1eadc1fa5516f51
fix Issue 14904 - bad error message in reduce: 'Incompatible
function/seed/element'

https://github.com/dlang/phobos/commit/76a5087312382ff0b16840d4c2501dc8ba6abda0
Merge pull request #3580 from 9rnsr/fix14904

--


[Issue 14464] coverage merge doesn't work

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14464

--- Comment #3 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/druntime

https://github.com/dlang/druntime/commit/7a8e9dc85be981710e16c99d528f2e5cbae2883d
fix Issue 14464 - coverage merge doesn't work

https://github.com/dlang/druntime/commit/789f02ec42ff9eb8007f282a45126e6252b64453
Merge pull request #1225 from MartinNowak/fix14464

--


[Issue 14476] core.thread unit tests failing on FreeBSD 9+

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14476

--- Comment #12 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/druntime

https://github.com/dlang/druntime/commit/fc1013763ff485844b1fef4696498b677a44b4db
fix Issue 14476 - core.thread unit tests failing on FreeBSD 9+

https://github.com/dlang/druntime/commit/8e5df2b76a1c3be5b6f18f4ba832a740649a6ca8
Merge pull request #1248 from MartinNowak/fix14476

--


[Issue 14247] string within demangled symbol name should be made escape

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14247

--- Comment #4 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/druntime

https://github.com/dlang/druntime/commit/af850d4bf770d593269f9467fb8e147b7b02380d
fix Issue 14247 - string within demangled symbol name should be made escape

https://github.com/dlang/druntime/commit/fc3aa22994202565b369afc68d66a1cfa079b7d6
Merge pull request #1186 from 9rnsr/fix14247

--


[Issue 14303] rt.util.container.array.Array unittest contains invalid code

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14303

--- Comment #3 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/druntime

https://github.com/dlang/druntime/commit/ebe07a3f34518e4bbde410f61572b468ac7e8f4e
fix issue 14303 rt.util.container.array.Array has invalid unittest

https://github.com/dlang/druntime/commit/c41cb051c8188bdfc5a024a266d11e4f7b2d5837
Merge pull request #1192 from braddr/fix-array-unittest

--


[Issue 12289] incorrect core.stdc.stdio.fpos_t alias

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=12289

--- Comment #3 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/druntime

https://github.com/dlang/druntime/commit/b96aa6962ac477bf711f7bedc4cc326534025ce2
Fix Issue 12289 - incorrect core.stdc.stdio.fpos_t alias and mbstate_t for
glibc

https://github.com/dlang/druntime/commit/93e6c9c43a039bb4dabe9a3a03fb5dfd19c1cfab
Merge pull request #1244 from joakim-noah/fpos_t

--


[Issue 6810] Strange `tuple used as a type` error

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=6810

--- Comment #6 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/dmd

https://github.com/dlang/dmd/commit/5e89c763b5f7e854f1a06c50aaa43340b1cb
fix Issue 6810 - Strange `tuple used as a type` error

https://github.com/dlang/dmd/commit/6c5e3c378e5c8c23bf51ca94b967ff3e029f2f4f
Merge pull request #4439 from 9rnsr/fix6810

--


[Issue 14401] typeid(shared X).init is empty for class types

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14401

--- Comment #7 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/druntime

https://github.com/dlang/druntime/commit/6fa857d5535d52df08fb93ae975ee864101537b0
fix Issue 14401 - typeid(shared X).init is empty for class types

https://github.com/dlang/druntime/commit/bd3f4cb2122edd1a7c107f86936c20bba15191b6
Merge pull request #1205 from 9rnsr/fix14401

--


[Issue 3841] silent implicit cast from floating point to integral in += etc. operators

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=3841

--- Comment #10 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/druntime

https://github.com/dlang/druntime/commit/0109acf3a2452580e354fab182dd148d5f921d3d
Avoid silent truncating conversions (issue 3841).

https://github.com/dlang/druntime/commit/254c8ee9371af2cd85a6f74fcfd583a370d31254
Merge pull request #1268 from legrosbuffle/explicit-truncating-conversions

--


[Issue 14350] Unit test failures are not displayed in Windows GUI programs

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14350

--- Comment #4 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/druntime

https://github.com/dlang/druntime/commit/6833d64a4f3ab2fb7af979ddf9ab1558dd369606
fix Issue 14350 - Unit test failures are not displayed in Windows GUI programs

https://github.com/dlang/druntime/commit/de0c8495054995fbb0237f53c9752ebd65884034
Merge pull request #1200 from CyberShadow/pull-20150327-170332

--


[Issue 13433] Request: Clock.currTime option to use CLOCK_REALTIME_COARSE / CLOCK_REALTIME_FAST

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13433

--- Comment #29 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/druntime

https://github.com/dlang/druntime/commit/8e29e0621b074a8d368b4d7d344281adb7a91e54
Add ClockType enum to core.time for issue# 13433.

https://github.com/dlang/druntime/commit/bcfc36b3ca5a229c751c972c607fee57d4febcb2
Merge pull request #990 from jmdavis/13433

--


[Issue 14890] [REG 2.068.0-rc1] Can not construct a RedBlackTree of Tuples

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14890

--- Comment #5 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/eff54e62ca7203f02360d71fc646e57d3bccf8d5
fix Issue 14890 - Can not construct a RedBlackTree of Tuples

https://github.com/dlang/phobos/commit/b82986e64fbb2950af118f4711e1558a4134c803
Merge pull request #3538 from 9rnsr/fix14890

--


[Issue 14511] Profiler does not work with multithreaded programs

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14511

--- Comment #7 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/druntime

https://github.com/dlang/druntime/commit/01087ce464d3b905d16e55799d02b710fcdd9939
fix Issue 14511 - Profiler does not work with multithreaded programs

https://github.com/dlang/druntime/commit/0f4f326fb476bbf80ca95e8f368bbb2c3d2f260d
Merge pull request #1233 from WalterBright/fix14511

--


[Issue 14735] [REG2.068-b1] std.string.indexOf cannot deduce function for char argument

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14735

--- Comment #19 from github-bugzi...@puremagic.com ---
Commit pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/709fb22e8ad984d5a77181a2669afaefed5c6a1d
Merge pull request #3446 from 9rnsr/fix14735

--


[Issue 14842] [REG 2.068-b2] approxEqual does not work with integers

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14842

--- Comment #9 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/bd8ed8c13cc4a73a182d8923122c17ba4ea5e524
fix Issue 14842 - [REG 2.068-b2] approxEqual does not work with integers

https://github.com/dlang/phobos/commit/de8896ae753bd491adba276fe6e653945334b580
Merge pull request #3525 from MartinNowak/fix14842

--


[Issue 14881] [REG] posix.mak omits package.d files when building zip file

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14881

--- Comment #6 from github-bugzi...@puremagic.com ---
Commit pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/a563512c890f0b64354ed12b856dcb490652c53f
Merge pull request #3530 from WalterBright/fix14881

--


[Issue 14712] GIT HEAD : std.net.curl regressions

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14712

--- Comment #11 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/7a20221c263810f005bedd5e4c05fca656503fa1
fix Issue 14712 - GIT HEAD : std.net.curl regressions

https://github.com/dlang/phobos/commit/bf66cd106ecad30a5322fbfa740fad87efd4f4b6
Merge pull request #3457 from CyberShadow/pull-20150630-152826-cherrypick-3436

--


  1   2   >