diff options
author | Mike Buland <eichlan@xagasoft.com> | 2012-07-24 15:57:52 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2012-07-24 15:57:52 +0000 |
commit | bfd12b10e440d65d5b5156d2b21df184b24a2e98 (patch) | |
tree | 16089885f1fc93f7654198c2c43b57450179766a /src/stable/randombasic.cpp | |
parent | f5089d112395d7835892133a27167b8f684f4f41 (diff) | |
download | libbu++-bfd12b10e440d65d5b5156d2b21df184b24a2e98.tar.gz libbu++-bfd12b10e440d65d5b5156d2b21df184b24a2e98.tar.bz2 libbu++-bfd12b10e440d65d5b5156d2b21df184b24a2e98.tar.xz libbu++-bfd12b10e440d65d5b5156d2b21df184b24a2e98.zip |
Fixed long-long specifier on basic random number generator.
Diffstat (limited to 'src/stable/randombasic.cpp')
-rw-r--r-- | src/stable/randombasic.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stable/randombasic.cpp b/src/stable/randombasic.cpp index ac591be..89e2780 100644 --- a/src/stable/randombasic.cpp +++ b/src/stable/randombasic.cpp | |||
@@ -8,8 +8,8 @@ | |||
8 | #include "bu/randombasic.h" | 8 | #include "bu/randombasic.h" |
9 | 9 | ||
10 | Bu::RandomBasic::RandomBasic() : | 10 | Bu::RandomBasic::RandomBasic() : |
11 | a( 6364136223846793005 ), | 11 | a( 6364136223846793005ll ), |
12 | c( 1442695040888963407 ), | 12 | c( 1442695040888963407ll ), |
13 | x( 0 ) | 13 | x( 0 ) |
14 | { | 14 | { |
15 | } | 15 | } |