[Issue 7130] New: NRVO Bug: Wrong Code With D'tor + Conditional Return

2011-12-18 Thread dsimcha
The NG server was down when I submitted this to Bugzilla and it's a pretty important issue, so I'm posting it to the NG manually now: http://d.puremagic.com/issues/show_bug.cgi?id=7130 import core.stdc.stdio; struct S { this(this) { printf("Postblit\n"); } ~this() {

Re: [Issue 2757] resource management in a timely manner

2009-04-02 Thread dsimcha
== Quote from Sean Kelly (s...@invisibleduck.org)'s article > d-bugm...@puremagic.com wrote: > > > > --- Comment #2 from ma...@pochta.ru 2009-04-02 07:50 --- > > This guy wants gc to free "unmanaged" resources each 10 seconds, because if > > gc > > objects, wrapping those resources, don't

druntime bug reports: Bugzilla or dsource?

2009-04-02 Thread dsimcha
To the druntime people: Should bug reports that are clearly druntime bugs be filed in Bugzilla or on dsource in the druntime project?

Re: D demoscene compo

2009-03-16 Thread dsimcha
== Quote from Don (nos...@nospam.com)'s article > BCS wrote: > > Hello ponce, > > > >> > >> Source code will be released soon under the WTFPL > > > > LOL, now /that's/ a license I can work with! > > > > > Why isn't there a version of that with non-offensive wording > There's a hundred nearly-id

Re: D2 phobos BigInt bug

2009-02-05 Thread dsimcha
== Quote from ZHOU Zhenyu (rin...@goozo.net)'s article > BigInt b = "10"; > foreach( i; 1..20 ){ > b*=10; > writeln(b*b); > } > system: Windows > CPU: Intel Core2 Duo T7250 2.00GHz > result: > 1 > 100 > 1 > 100 > 10