[Issue 17985] Implement -stdin for rdmd

2017-12-25 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17985 --- Comment #4 from Andre --- It's great dmd -run supports now -stdin. Thanks a lot. That is viable workaround. I would like to keep this issue open to get the same functionality for rdmd, because: - rdmd is the advertised tool to work with D in a

[Issue 18120] Allow DRT options to be set via the environment

2017-12-25 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=18120 Rainer Schuetze changed: What|Removed |Added CC||r.sagita...@gmx.de --- Comment #1 from Rai

[Issue 18126] New: [internal] Reduce number of turned off warnings.

2017-12-25 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=18126 Issue ID: 18126 Summary: [internal] Reduce number of turned off warnings. Product: D Version: D2 Hardware: All OS: All Status: NEW Severity: enhancement

[Issue 18126] [internal] Reduce number of turned off warnings.

2017-12-25 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=18126 Iain Buclaw changed: What|Removed |Added Keywords||C++ CC|

[Issue 18127] New: homepage: Fast code, fast.

2017-12-25 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=18127 Issue ID: 18127 Summary: homepage: Fast code, fast. Product: D Version: D2 Hardware: All URL: http://dlang.org/ OS: All Status: NEW Severity: enh

[Issue 18124] Over-use of `auto` return type in std.regex

2017-12-25 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=18124 Seb changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 18127] homepage: Fast code, fast.

2017-12-25 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=18127 greenify changed: What|Removed |Added CC||greeen...@gmail.com --- Comment #1 from greenify

[Issue 18124] Over-use of `auto` return type in std.regex

2017-12-25 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=18124 --- Comment #2 from Neia Neutuladh --- I wasn't aware that a decision to use the type system was bikeshedding. Just a tip: emoticons can make an otherwise professional comment seem smarmy or condescending. If you do not intend to seem smarmy or cond

[Issue 15592] Template specializations don't work in nested scope

2017-12-25 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=15592 Bastiaan Veelo changed: What|Removed |Added CC||basti...@veelo.net --

[Issue 18128] [scope] escaping reference to class allocated on the stack

2017-12-25 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=18128 Walter Bright changed: What|Removed |Added Keywords||safe --

[Issue 18128] New: [scope] escaping reference to class allocated on the stack

2017-12-25 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=18128 Issue ID: 18128 Summary: [scope] escaping reference to class allocated on the stack Product: D Version: D2 Hardware: All OS: All Status: NEW

[Issue 18124] Over-use of `auto` return type in std.regex

2017-12-25 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=18124 --- Comment #3 from Seb --- > I wasn't aware that a decision to use the type system was bikeshedding. Okay let me go one step back here: I do see your point of explicitly stating the return type, s.t. it's one click away from the user. However, this

[Issue 18128] [scope] escaping reference to class allocated on the stack

2017-12-25 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=18128 Mike Franklin changed: What|Removed |Added CC||slavo5...@yahoo.com --

[Issue 18115] [REG2.078-b1] case where && is not shortcut anymore in CTFE

2017-12-25 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=18115 --- Comment #1 from Basile B. --- The '&&' RHS shouldn't be evaluated even in this simplified test case: ``` int test() { if (test.stringof.length >= 6 && test.stringof[$-7..$] == "1234567") {} return 0; } enum a = test(); ``` Whe