[Issue 2306] Scope for dynamic arrays should free memory.

2019-08-20 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=2306 RazvanN changed: What|Removed |Added Status|REOPENED|RESOLVED CC|

[Issue 2306] Scope for dynamic arrays should free memory.

2010-08-11 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2306 David Simcha dsim...@yahoo.com changed: What|Removed |Added Status|NEW |RESOLVED

[Issue 2306] Scope for dynamic arrays should free memory.

2010-08-11 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2306 nfx...@gmail.com changed: What|Removed |Added Status|RESOLVED|REOPENED CC|

[Issue 2306] Scope for dynamic arrays should free memory.

2010-08-11 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2306 bearophile_h...@eml.cc changed: What|Removed |Added CC||bearophile_h...@eml.cc ---

[Issue 2306] Scope for dynamic arrays should free memory.

2010-08-11 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2306 Leandro Lucarella llu...@gmail.com changed: What|Removed |Added CC||llu...@gmail.com

[Issue 2306] Scope for dynamic arrays should free memory.

2010-08-11 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2306 --- Comment #11 from nfx...@gmail.com 2010-08-11 15:21:37 PDT --- Nobody knows whether this is a bug report or an enhancement request because D1 is too underspecified. Walter has added features to D1 in the past, although I suspect he's

[Issue 2306] Scope for dynamic arrays should free memory.

2008-12-11 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2306 --- Comment #5 from [EMAIL PROTECTED] 2008-12-11 06:25 --- (In reply to comment #0) void test() { scope uint[] foo = new uint[100_000_000]; } void test() { uint[] foo = new uint[100_000_000]; scope(exit) delete foo;

[Issue 2306] Scope for dynamic arrays should free memory.

2008-12-11 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2306 --- Comment #6 from dsim...@yahoo.com 2008-12-11 22:54 --- (In reply to comment #5) consider this - void test() { scope uint[] foo = new uint[100_000_000]; scope uint[] foo1 = foo; } - how much should it