repo.or.cz
/
aur-mirror.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git]
/
ldc-tango
/
tango.patch
blob
32341d48252e6d0ae58f9c46b341190d0f858496
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;
11
}
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;
20
}
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;
29
}
30
ToVoidA el;
31
synchronized(lock){