[Issue 13571] New: Overload of std.range.tee which accepts a functions does not accept structs or classes with opCall

2014-10-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13571 Issue ID: 13571 Summary: Overload of std.range.tee which accepts a functions does not accept structs or classes with opCall Product: D Version: D2 Hardware: All

[Issue 10291] formattedWrite() to an Appender fails silently after Appender.clear()

2014-10-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=10291 yazan.dab...@gmail.com changed: What|Removed |Added CC||yazan.dab...@gmail.com --- Comment

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

2014-10-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13433 --- Comment #5 from Jonathan M Davis jmdavisp...@gmx.com --- H. The precision of the _COARSE variants is abysmal. Apparently, it's only 1 ms (at least on Linux). So, I certainly think that it would be foolish to use them normally, but I see no

[Issue 13572] New: etc.c.zlib must be nothrow

2014-10-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13572 Issue ID: 13572 Summary: etc.c.zlib must be nothrow Product: D Version: D2 Hardware: All OS: All Status: NEW Severity: trivial Priority: P1

[Issue 12931] Make const, immutable, inout, and shared illegal as function attributes on the left-hand side of a function

2014-10-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=12931 monarchdo...@gmail.com changed: What|Removed |Added CC||monarchdo...@gmail.com --- Comment

[Issue 12998] std.net.curl fails to compile

2014-10-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=12998 Martin Nowak c...@dawg.eu changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 13573] New: std.net.curl doesn't handle exceptions in callbacks

2014-10-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13573 Issue ID: 13573 Summary: std.net.curl doesn't handle exceptions in callbacks Product: D Version: D2 Hardware: x86_64 OS: Linux Status: NEW Severity: normal

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

2014-10-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13433 --- Comment #6 from Jonathan M Davis jmdavisp...@gmx.com --- https://github.com/D-Programming-Language/phobos/pull/2584 --

[Issue 13542] std.file.FileException has GetLastError() as a default argument

2014-10-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13542 --- Comment #4 from Walter Bright bugzi...@digitalmars.com --- (In reply to Vladimir Panteleev from comment #3) (In reply to Walter Bright from comment #2) wenforce is currently private No. and throws an Exception, No. It throws a

[Issue 13544] calls to std.file.FileException are idup-ing their string arguments

2014-10-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13544 --- Comment #7 from Walter Bright bugzi...@digitalmars.com --- (In reply to Vladimir Panteleev from comment #6) (In reply to Walter Bright from comment #5) (In reply to Vladimir Panteleev from comment #2) Doesn't that mean that we'd also need

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

2014-10-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13433 --- Comment #7 from Marco Leise marco.le...@gmx.de --- Do you have a source Jonathan? All I could find about it was references to the kernel ticks on Linux which is 100, 250 or 1000 Hz, but never as low as 10 Hz. On tickless systems I couldn't figure

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

2014-10-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13433 --- Comment #8 from Marco Leise marco.le...@gmx.de --- I just ran a test: void main(string[] args) { while (true) { timespec time; clock_gettime(CLOCK_REALTIME_COARSE, time); printf(:%03ld ms\n, time.tv_nsec /

[Issue 13574] New: incorrect code for assignment to dollar in slice expression

2014-10-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13574 Issue ID: 13574 Summary: incorrect code for assignment to dollar in slice expression Product: D Version: D2 Hardware: x86_64 OS: Linux Status: NEW

[Issue 13574] incorrect code for assignment to dollar in slice expression

2014-10-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13574 Martin Nowak c...@dawg.eu changed: What|Removed |Added Priority|P1 |P2

[Issue 13542] std.file.FileException has GetLastError() as a default argument

2014-10-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13542 --- Comment #5 from Vladimir Panteleev thecybersha...@gmail.com --- (In reply to Walter Bright from comment #4) (In reply to Vladimir Panteleev from comment #3) No. It throws a WindowsException. Then it has changed recently? stdio.d line 961:

[Issue 9906] filter of static opCall

2014-10-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=9906 --- Comment #2 from github-bugzi...@puremagic.com --- Commit pushed to master at https://github.com/D-Programming-Language/phobos https://github.com/D-Programming-Language/phobos/commit/3b623f9939747fb687ccbcb5879eaf319e942f60 Merge pull request

[Issue 9906] filter of static opCall

2014-10-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=9906 hst...@quickfur.ath.cx changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Issue 10045] Missed warning with wrong toHash() + toHash documentation

2014-10-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=10045 Martin Nowak c...@dawg.eu changed: What|Removed |Added CC||c...@dawg.eu --- Comment #1 from

[Issue 10045] Missed warning with wrong toHash() + toHash documentation

2014-10-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=10045 Martin Nowak c...@dawg.eu changed: What|Removed |Added Keywords||pull --- Comment #2 from Martin

[Issue 10045] Missed warning with wrong toHash() + toHash documentation

2014-10-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=10045 Martin Nowak c...@dawg.eu changed: What|Removed |Added Priority|P2 |P4 Hardware|x86

[Issue 13544] calls to std.file.FileException are idup-ing their string arguments

2014-10-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13544 --- Comment #8 from Vladimir Panteleev thecybersha...@gmail.com --- Oh, sorry, I finally get it now. For some reason I kept thinking you were trying to get rid of the .idup when the user passes a string to copy. Thanks for elaborating. --

[Issue 8728] Allow optional message for @disable

2014-10-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=8728 Martin Nowak c...@dawg.eu changed: What|Removed |Added Priority|P2 |P3 CC|

[Issue 8728] Allow optional message for @disable

2014-10-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=8728 --- Comment #3 from Martin Nowak c...@dawg.eu --- Just wanted to file this too. Would help to improve error messages. --

[Issue 13569] Inconsistent integer divide by zero behavior and spec

2014-10-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13569 David Nadlinger c...@klickverbot.at changed: What|Removed |Added CC||c...@klickverbot.at

[Issue 4890] GC.collect() deadlocks multithreaded program.

2014-10-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=4890 --- Comment #32 from Martin Nowak c...@dawg.eu --- Can we first confirm that this is a regression. --

[Issue 13304] std.algorithm.reduce: Unable to deduce an acceptable seed type with float[]

2014-10-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13304 Martin Nowak c...@dawg.eu changed: What|Removed |Added CC||c...@dawg.eu --- Comment #5 from

[Issue 13304] std.algorithm.reduce: Unable to deduce an acceptable seed type with float[]

2014-10-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13304 monarchdo...@gmail.com changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

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

2014-10-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13433 --- Comment #9 from Jonathan M Davis jmdavisp...@gmx.com ---

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

2014-10-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13433 --- Comment #10 from Marco Leise marco.le...@gmx.de --- You might be right. --

[Issue 4890] GC.collect() deadlocks multithreaded program.

2014-10-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=4890 --- Comment #33 from Sean Kelly s...@invisibleduck.org --- The GC was in use for probably 5 years without a reported deadlock. Though history isn't exactly proof. I don't suppose someone wants to regress this and find the offending release? Isn't

[Issue 12985] Better error message for not supported array operation

2014-10-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=12985 --- Comment #5 from github-bugzi...@puremagic.com --- Commits pushed to master at https://github.com/D-Programming-Language/dmd https://github.com/D-Programming-Language/dmd/commit/2ae8fe46c7f7a8a8c464a1d40d306f9f2926ebca fix Issue 12985 - Better

[Issue 12985] Better error message for not supported array operation

2014-10-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=12985 github-bugzi...@puremagic.com changed: What|Removed |Added Status|NEW |RESOLVED

[Issue 13491] DMD on Windows doesn't handle wildcards on the command line.

2014-10-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13491 Walter Bright bugzi...@digitalmars.com changed: What|Removed |Added CC|

[Issue 13564] [REG2.065] nested struct destructor trying to access members of a global class fail to compile

2014-10-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13564 github-bugzi...@puremagic.com changed: What|Removed |Added Status|NEW |RESOLVED

[Issue 13564] [REG2.065] nested struct destructor trying to access members of a global class fail to compile

2014-10-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13564 --- Comment #2 from github-bugzi...@puremagic.com --- Commits pushed to master at https://github.com/D-Programming-Language/dmd https://github.com/D-Programming-Language/dmd/commit/e8d5e3ca38c517fff117ce0f10840ce4a99cbe1d fix Issue 13564 - nested