[Issue 3882] Unused result of pure functions

2011-06-26 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3882 --- Comment #6 from bearophile_h...@eml.cc 2011-06-25 23:14:11 PDT --- (In reply to comment #5) I added this as a warning because it's fairly onerous now that we have implicit purity deduction. Thank you very much Walter. DMD 2.054 is

[Issue 3632] modify float is float to do a bitwise compare

2011-06-26 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3632 Walter Bright bugzi...@digitalmars.com changed: What|Removed |Added Status|NEW |RESOLVED

[Issue 6212] regex fails to make matches that include newline

2011-06-26 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6212 kenn...@gmail.com changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 3632] modify float is float to do a bitwise compare

2011-06-26 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3632 bearophile_h...@eml.cc changed: What|Removed |Added CC||bearophile_h...@eml.cc ---

[Issue 4678] Built struct is callable without opCall

2011-06-26 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4678 --- Comment #1 from bearophile_h...@eml.cc 2011-06-26 01:00:13 PDT --- I think there is a pull request with a patch for this bug, do you know what one? -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You

[Issue 6214] New: Don't influence foreach iteration on range

2011-06-26 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6214 Summary: Don't influence foreach iteration on range Product: D Version: D2 Platform: All OS/Version: All Status: NEW Severity: enhancement Priority: P2

[Issue 3632] modify float is float to do a bitwise compare

2011-06-26 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3632 kenn...@gmail.com changed: What|Removed |Added Status|RESOLVED|REOPENED CC|

[Issue 5725] ubyte/ushort infinite foreach loops

2011-06-26 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5725 --- Comment #1 from bearophile_h...@eml.cc 2011-06-26 01:54:29 PDT --- Related. This compiles with no errors, and maybe goes in infinite loop: import std.stdio; void main() { auto array = new int[270]; foreach (ubyte i, ref x; array)

[Issue 6214] Don't influence foreach iteration on range

2011-06-26 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6214 --- Comment #1 from bearophile_h...@eml.cc 2011-06-26 02:07:01 PDT --- This is an older enhancement requst, bug 5306 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You are receiving this mail because:

[Issue 5306] Disallow foreach ref on numeric interval

2011-06-26 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5306 --- Comment #1 from bearophile_h...@eml.cc 2011-06-26 02:08:07 PDT --- See a newer proposal bug 6214 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You are receiving this mail because: ---

[Issue 6212] regex fails to make matches that include newline

2011-06-26 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6212 Dmitry Olshansky dmitry.o...@gmail.com changed: What|Removed |Added CC|

[Issue 5125] Optional function purity/nothrowness

2011-06-26 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5125 bearophile_h...@eml.cc changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Issue 5045] auto type inference for nest function

2011-06-26 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5045 --- Comment #2 from bearophile_h...@eml.cc 2011-06-26 05:10:19 PDT --- In DMD 2.053 the error messages are: test.d(2): function declaration without return type. (Note that constructors are always named 'this') test.d(2): no identifier for

[Issue 4911] Bad error messages from attempts to write into read-only File

2011-06-26 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4911 --- Comment #2 from bearophile_h...@eml.cc 2011-06-26 05:20:49 PDT --- In DMD 2.053 this program: import std.stdio: File; void foo() { auto f = File(test.raw, r); f.write(hello); } void bar() { foo(); } void main() { bar(); }

[Issue 4911] Bad error messages from attempts to write into read-only File

2011-06-26 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4911 bearophile_h...@eml.cc changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Issue 4786] enum of run-time array length

2011-06-26 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4786 bearophile_h...@eml.cc changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Issue 6215] ICE(el.c) DMD segfaults when built on system with XCode 4.2

2011-06-26 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6215 Jacob Carlborg d...@me.com changed: What|Removed |Added CC||d...@me.com --- Comment

[Issue 6216] New: Built-in opAssign implicitly defined should call field's opAssign

2011-06-26 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6216 Summary: Built-in opAssign implicitly defined should call field's opAssign Product: D Version: D2 Platform: All OS/Version: All Status: NEW Severity:

[Issue 6215] ICE(el.c) DMD segfaults when built on system with XCode 4.2

2011-06-26 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6215 --- Comment #2 from Robert Clipsham rob...@octarineparrot.com 2011-06-26 19:33:46 BST --- The following patch is a workaround, it seems something's going wrong with the elem recycling system: diff --git a/src/backend/el.c

[Issue 5708] [CTFE] Incorrect string constant folding with -inline

2011-06-26 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5708 Don clugd...@yahoo.com.au changed: What|Removed |Added Status|REOPENED|RESOLVED

[Issue 5415] @Safe functions not working

2011-06-26 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5415 Walter Bright bugzi...@digitalmars.com changed: What|Removed |Added Status|NEW |RESOLVED

[Issue 4132] pointer arithmetic accepted in @safe functions

2011-06-26 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4132 Walter Bright bugzi...@digitalmars.com changed: What|Removed |Added Status|NEW |RESOLVED

[Issue 5088] Cannot cast const(int) to long in @safe function

2011-06-26 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5088 Walter Bright bugzi...@digitalmars.com changed: What|Removed |Added Status|NEW |RESOLVED

[Issue 4885] Uninitialize Pointers Allowed in @safe code

2011-06-26 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4885 Walter Bright bugzi...@digitalmars.com changed: What|Removed |Added Status|NEW |RESOLVED

[Issue 6186] Struct destructor is not called on out parameter

2011-06-26 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6186 Walter Bright bugzi...@digitalmars.com changed: What|Removed |Added CC|

[Issue 6186] Struct destructor is not called on out parameter

2011-06-26 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6186 --- Comment #2 from Walter Bright bugzi...@digitalmars.com 2011-06-26 17:29:25 PDT --- See also: https://github.com/D-Programming-Language/dmd/pull/155 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ---

[Issue 5676] [CTFE] segfault using tuple containing struct that has opAssign

2011-06-26 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5676 Walter Bright bugzi...@digitalmars.com changed: What|Removed |Added Status|NEW |RESOLVED

[Issue 5693] Segfault with address of template struct opCall

2011-06-26 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5693 Walter Bright bugzi...@digitalmars.com changed: What|Removed |Added Status|NEW |RESOLVED

[Issue 2553] Private interfaces cause a link error

2011-06-26 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2553 coldinfluence...@yahoo.co.jp changed: What|Removed |Added Priority|P2 |P3 CC|

[Issue 6161] iasm opcode family Jcc use absolute address instead of relative for functions

2011-06-26 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6161 Walter Bright bugzi...@digitalmars.com changed: What|Removed |Added Status|NEW |RESOLVED