[Issue 13369] std.math.iLog10

2015-12-01 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13369 bb.t...@gmx.com changed: What|Removed |Added CC||bb.t...@gmx.com --- Comment #2 from

[Issue 14998] Cannot put a char into a char[]

2015-12-01 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14998 --- Comment #6 from schneider.ced...@gmx.de --- "Cannot put a into a because it is not a " would not need to be special-cased since the special-casing already happens in the template that retrieves the ranges element type (if I am understanding

[Issue 13369] std.math.iLog10

2015-12-01 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13369 ag0ae...@gmail.com changed: What|Removed |Added CC||ag0ae...@gmail.com --- Comment #3 from

[Issue 14998] Cannot put a char into a char[]

2015-12-01 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14998 --- Comment #7 from Steven Schveighoffer --- Except that's not exactly the reason. The reason is because no implementation exists to support it. Quite literally, the compiler tried to find a suitable mechanism, and couldn't.

[Issue 15392] dmd object files fail to link with ld.gold

2015-12-01 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=15392 --- Comment #2 from Martin Nowak --- (In reply to Walter Bright from comment #1) > The sections are not supposed to be order dependent. Yeah, you're right, the problem is that ld.gold doesn't assign an output order to the eh section.

[Issue 15390] 'abstract' should override final:

2015-12-01 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=15390 --- Comment #2 from Manu --- (In reply to Infiltrator from comment #1) > I don't know whether I agree with your statement "naturally, this is the > first line in any D class", but I agree that final: and abstract: should >

[Issue 15378] dlang.org does not completely work with https:

2015-12-01 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=15378 --- Comment #4 from Sobirari Muhomori --- That probably means mixed content. Try https://dlang.org/getstarted.html --

[Issue 15371] __traits(getMember) should bypass the protection

2015-12-01 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=15371 --- Comment #2 from bb.t...@gmx.com --- https://github.com/D-Programming-Language/dmd/pull/5289 On n'est jamais mieux servi que par soi-même. --

[Issue 15393] New: Debug versions in GC code doesn't compile.

2015-12-01 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=15393 Issue ID: 15393 Summary: Debug versions in GC code doesn't compile. Product: D Version: D2 Hardware: All OS: All Status: NEW Severity: normal

[Issue 14998] Cannot put a char into a char[]

2015-12-01 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14998 Steven Schveighoffer changed: What|Removed |Added Status|NEW |RESOLVED

[Issue 14998] Cannot put a char into a char[]

2015-12-01 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14998 bb.t...@gmx.com changed: What|Removed |Added CC||bb.t...@gmx.com --- Comment #2 from

[Issue 15296] [REG2.069] cannot inline simple function that calls use non-inlinable statements

2015-12-01 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=15296 --- Comment #4 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/4c0c8088d34aca637aef07122ec8a26ce1244fe3 fix Issue 15296 - cannot

[Issue 15292] [REG2.068.0] Segmentation fault with self-referencing struct / inout / alias this

2015-12-01 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=15292 --- 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/2f0cc57aa71a6ff67f27ec3727841ec756c843fb fix Issue 15292 -

[Issue 15272] [2.069-rc2,inline] nothing written to output when -inline is set

2015-12-01 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=15272 --- Comment #17 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/633c50a4ffd3980502eaacecf7c743e7051925a3 fix Issue 15272 -

[Issue 10956] std.getopt error on wrongly position arguments should improve

2015-12-01 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=10956 --- Comment #2 from bb.t...@gmx.com --- (In reply to Andrej Mitrovic from comment #0) > - > import std.getopt; > > void main(string[] args) > { > int i; > getopt(args, , ""); > } > - > > This call is wrong, the text argument should

[Issue 14998] Cannot put a char into a char[]

2015-12-01 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14998 --- Comment #4 from schneider.ced...@gmx.de --- If the error message had read "Cannot put a char into a char[] because it is a range of dchar" this issue would not exist. So, proper resolution of this issue would be improving the error message, as

[Issue 14998] Cannot put a char into a char[]

2015-12-01 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14998 --- Comment #5 from Steven Schveighoffer --- (In reply to schneider.cedric from comment #4) > If the error message had read "Cannot put a char into a char[] because it is > a range of dchar" this issue would not exist. > > So,