[Issue 14246] RAII - proper destruction of partially constructed objects/structs

2018-09-28 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14246 --- Comment #14 from github-bugzi...@puremagic.com --- Commits pushed to master at https://github.com/dlang/dmd https://github.com/dlang/dmd/commit/a9ee4ce6c0e4e0e4981a367470e8645f2cb85271 fix Issue 14246 - RAII - proper destruction of partially

[Issue 14246] RAII - proper destruction of partially constructed objects/structs

2018-09-14 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14246 --- Comment #13 from Walter Bright --- Trying again: https://github.com/dlang/dmd/pull/8697 --

[Issue 14246] RAII - proper destruction of partially constructed objects/structs

2017-08-22 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14246 --- Comment #12 from github-bugzi...@puremagic.com --- Commit pushed to master at https://github.com/dlang/dlang.org https://github.com/dlang/dlang.org/commit/45ca5e35d3de824e104c3049083eb23fa03775c5 Remove wrong changelog entry --

[Issue 14246] RAII - proper destruction of partially constructed objects/structs

2017-08-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14246 --- Comment #11 from github-bugzi...@puremagic.com --- Commit pushed to stable at https://github.com/dlang/dlang.org https://github.com/dlang/dlang.org/commit/45ca5e35d3de824e104c3049083eb23fa03775c5 Remove wrong changelog entry The fix for issue

[Issue 14246] RAII - proper destruction of partially constructed objects/structs

2017-08-07 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14246 ZombineDev changed: What|Removed |Added Status|RESOLVED|REOPENED

[Issue 14246] RAII - proper destruction of partially constructed objects/structs

2017-08-07 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14246 github-bugzi...@puremagic.com changed: What|Removed |Added Status|REOPENED|RESOLVED

[Issue 14246] RAII - proper destruction of partially constructed objects/structs

2017-08-07 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14246 --- Comment #10 from github-bugzi...@puremagic.com --- Commits pushed to newCTFE at https://github.com/dlang/dmd https://github.com/dlang/dmd/commit/1e755c648e5142719d50dcf984f10ace5b8f8357 fix Issue 14246 - RAII - proper destruction of partially

[Issue 14246] RAII - proper destruction of partially constructed objects/structs

2017-07-30 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14246 Moritz Maxeiner changed: What|Removed |Added Status|RESOLVED|REOPENED

[Issue 14246] RAII - proper destruction of partially constructed objects/structs

2017-06-10 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14246 --- Comment #8 from github-bugzi...@puremagic.com --- Commits pushed to master at https://github.com/dlang/dmd https://github.com/dlang/dmd/commit/1e755c648e5142719d50dcf984f10ace5b8f8357 fix Issue 14246 - RAII - proper destruction of partially

[Issue 14246] RAII - proper destruction of partially constructed objects/structs

2017-05-20 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14246 --- Comment #7 from Walter Bright --- https://github.com/dlang/dmd/pull/6816 --

[Issue 14246] RAII - proper destruction of partially constructed objects/structs

2017-05-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14246 --- Comment #6 from Walter Bright --- Shachar Shemesh wrote this example: import std.stdio; struct A { int a = 3; this( int var ) { a += var; } ~this() { writeln("A down ", a); } } struct B { A a;

[Issue 14246] RAII - proper destruction of partially constructed objects/structs

2017-05-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14246 --- Comment #5 from Walter Bright --- Relevant discussion: http://www.digitalmars.com/d/archives/digitalmars/D/What_is_going_on_here_257862.html --

[Issue 14246] RAII - proper destruction of partially constructed objects/structs

2017-05-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14246 Walter Bright changed: What|Removed |Added OS|Linux |All --

[Issue 14246] RAII - proper destruction of partially constructed objects/structs

2017-05-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14246 Walter Bright changed: What|Removed |Added CC|