phobos 0.161

This commit is contained in:
Brad Roberts 2007-09-10 05:24:49 +00:00
parent 6ca2e50261
commit b76c21ccf9
42 changed files with 973 additions and 260 deletions

View file

@ -108,7 +108,7 @@ static this()
}
else
{
s = (cast(long)tv.tv_sec << 32) + tv.tv_usec;
s = cast(ulong)((cast(long)tv.tv_sec << 32) + tv.tv_usec);
}
}
rand_seed(cast(uint) s, cast(uint)(s >> 32));