dmd 1.053 and 2.037 release

Simen kjaeraas simen.kjaras at gmail.com
Sat Dec 5 17:46:37 PST 2009


On Sat, 05 Dec 2009 05:05:13 +0100, Walter Bright  
<newshound1 at digitalmars.com> wrote:

> Probably the biggest thing is opDispatch!
>
> http://www.digitalmars.com/d/1.0/changelog.html
> http://ftp.digitalmars.com/dmd.1.053.zip
>
>
> http://www.digitalmars.com/d/2.0/changelog.html
> http://ftp.digitalmars.com/dmd.2.037.zip
>
> Many thanks to the numerous people who contributed to this update.

I get a compile error:
   std\conv.d(2506): Error: undefined identifier module traits.staticIndexOf
Line 2506 in std.conv should be changed from
   if (std.traits.staticIndexOf!(Unqual!S, uint, ulong) >= 0 &&  
isSomeString!T)
to
   if (std.typetuple.staticIndexOf!(Unqual!S, uint, ulong) >= 0 &&  
isSomeString!T)

-- 
Simen


More information about the Digitalmars-d-announce mailing list