updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / ldc-tango / tango.patch
blob32341d48252e6d0ae58f9c46b341190d0f858496
1 Index: tango/math/random/engines/URandom.d
2 ===================================================================
3 --- tango/math/random/engines/URandom.d (revision 4135)
4 +++ tango/math/random/engines/URandom.d (working copy)
5 @@ -34,7 +34,7 @@
6 ubyte nextB(){
7 union ToVoidA{
8 ubyte i;
9 - void[1] a;
10 + ubyte [1] a;
12 ToVoidA el;
13 synchronized(lock){
14 @@ -49,7 +49,7 @@
15 uint next(){
16 union ToVoidA{
17 uint i;
18 - void[4] a;
19 + ubyte [4] a;
21 ToVoidA el;
22 synchronized(lock){
23 @@ -64,7 +64,7 @@
24 ulong nextL(){
25 union ToVoidA{
26 ulong l;
27 - void[8] a;
28 + ubyte [8] a;
30 ToVoidA el;
31 synchronized(lock){