Re: Bug Of pow in std.math

2010-07-01 Thread sins666
== Quote from Simen kjaeraas (simen.kja...@gmail.com)'s article > sins666 wrote: > > import std.math; > > import std.stdio; > > > > void main() > > { > > writeln(pow(5, 2)); // 25 > > writeln(pow(5, 0)); // 1 > > writeln(pow(5, -3)); // object.Error: Integer Divide by Zero > > } > > >

[Issue 3964] Hello World, Reloaded example on 1.0 page has writeln

2010-07-01 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3964 nfx...@gmail.com changed: What|Removed |Added CC||nfx...@gmail.com --- Comment #2 from

[Issue 4410] AA has inconsistent and unreasonable requirements for iterating over reference-type index

2010-07-01 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4410 nfx...@gmail.com changed: What|Removed |Added CC||nfx...@gmail.com --- Comment #2 from

[Issue 4415] code generation for std.all fails on fedora

2010-07-01 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4415 --- Comment #1 from Ellery Newcomer 2010-07-01 17:14:22 PDT --- Created an attachment (id=688) enforce escape character interpretation -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You are receiving th

[Issue 4415] New: code generation for std.all fails on fedora

2010-07-01 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4415 Summary: code generation for std.all fails on fedora Product: D Version: D2 Platform: Other OS/Version: Linux Status: NEW Severity: normal Priority: P2 Com

[Issue 3964] Hello World, Reloaded example on 1.0 page has writeln

2010-07-01 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3964 --- Comment #1 from Michael P 2010-07-01 16:43:20 PDT --- Is there any reason why this hasn't been fixed? It only requires a 1 character addition... -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You ar

[Issue 4414] New: [ICE] Taking item of static array returned by function

2010-07-01 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4414 Summary: [ICE] Taking item of static array returned by function Product: D Version: D2 Platform: x86 OS/Version: Windows Status: NEW Keywords: rejects-valid Severit

[Issue 4413] New: typeof(this) doesn't work in method template signature

2010-07-01 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4413 Summary: typeof(this) doesn't work in method template signature Product: D Version: D2 Platform: x86 OS/Version: Windows Status: NEW Severity: normal Priority: P2

[Issue 4412] Array capacity growth spikey and the ratio approaches 1.0

2010-07-01 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4412 Steven Schveighoffer changed: What|Removed |Added Status|NEW |ASSIGNED CC|

[Issue 4396] mkdir race prevents concurrent compiling with DMD using make -j

2010-07-01 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4396 Walter Bright changed: What|Removed |Added Status|REOPENED|RESOLVED Resolution|

[Issue 4412] Array capacity growth spikey and the ratio approaches 1.0

2010-07-01 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4412 Ali Cehreli changed: What|Removed |Added CC||acehr...@yahoo.com --- Comment #1 from A

[Issue 4412] New: Array capacity growth spikey and the ratio approaches 1.0

2010-07-01 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4412 Summary: Array capacity growth spikey and the ratio approaches 1.0 Product: D Version: 2.032 Platform: Other OS/Version: Linux Status: NEW Severity: norma

[Issue 4401] auto functions cannot be inner functions

2010-07-01 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4401 bearophile_h...@eml.cc changed: What|Removed |Added CC||bary...@smp.if.uj.edu.pl --- C

[Issue 3654] auto return doesn't work for nested functions

2010-07-01 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3654 bearophile_h...@eml.cc changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 4401] auto functions cannot be inner functions

2010-07-01 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4401 --- Comment #3 from Ellery Newcomer 2010-07-01 09:10:51 PDT --- seems this is a duplicate of issue 3654 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You are receiving this mail because: ---

[Issue 4411] ranges + auto functions don't work

2010-07-01 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4411 David Simcha changed: What|Removed |Added CC||dsim...@yahoo.com Depends on|

[Issue 4411] New: ranges + auto functions don't work

2010-07-01 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4411 Summary: ranges + auto functions don't work Product: D Version: D2 Platform: Other OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: P

[Issue 4410] AA has inconsistent and unreasonable requirements for iterating over reference-type index

2010-07-01 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4410 --- Comment #1 from Steven Schveighoffer 2010-07-01 05:53:32 PDT --- (In reply to comment #0) > first, ref should *never* be allowed as an index for AAs. I hope that someday > this can be extended to all user types (see related bug 2443). ..

[Issue 4410] New: AA has inconsistent and unreasonable requirements for iterating over reference-type index

2010-07-01 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4410 Summary: AA has inconsistent and unreasonable requirements for iterating over reference-type index Product: D Version: D2 Platform: Other OS/Version: All Status: NE

Re: Bug Of pow in std.math

2010-07-01 Thread Simen kjaeraas
sins666 wrote: import std.math; import std.stdio; void main() { writeln(pow(5, 2)); // 25 writeln(pow(5, 0)); // 1 writeln(pow(5, -3)); // object.Error: Integer Divide by Zero } And dmd version is 2.047. Was I mistake in my source.or bug? The mistake is in your code. std.math.po

[Issue 4396] mkdir race prevents concurrent compiling with DMD using make -j

2010-07-01 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4396 Gide Nwawudu changed: What|Removed |Added Status|RESOLVED|REOPENED CC|