Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/vowpal_wabbit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorariel faigon <github.2009@yendor.com>2014-01-15 01:05:57 +0400
committerariel faigon <github.2009@yendor.com>2014-01-15 01:05:57 +0400
commit02fddc6272d76b6799f7fd524b1b61d2a1708065 (patch)
tree82ebbd34e86a1b8d7931666b422013e81a3d8054 /vowpalwabbit/rand48.cc
parent56604c6a16819b78bc98498c40882c925c58c9bc (diff)
Lowecase the hex constant to better distinguish it from the ULL suffix.
Diffstat (limited to 'vowpalwabbit/rand48.cc')
-rw-r--r--vowpalwabbit/rand48.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/vowpalwabbit/rand48.cc b/vowpalwabbit/rand48.cc
index 65ec055e..bfca1a15 100644
--- a/vowpalwabbit/rand48.cc
+++ b/vowpalwabbit/rand48.cc
@@ -8,7 +8,7 @@ using namespace std;
// prevent truncation of constant to (32-bit long) when compiling
// in a 32-bit env: warning: integer constant is too large for "long" type
//
-uint64_t a = 0xEECE66D5DEECE66DULL;
+uint64_t a = 0xeece66d5deece66dULL;
uint64_t c = 2147483647;
int bias = 127 << 23;