mirror of
https://github.com/dlang/phobos.git
synced 2025-05-12 15:17:12 +03:00
phobos 0.161
This commit is contained in:
parent
6ca2e50261
commit
b76c21ccf9
42 changed files with 973 additions and 260 deletions
|
@ -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));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue