On Sun, 06 Dec 2009 03:35:42 +0100, Walter Bright
<[email protected]> wrote:
Simen kjaeraas wrote:
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)
That change is already in the release. Perhaps you have an old version?
So it would indeed seem. Sorry about the noise.
--
Simen