From 6f39f1f138d2d3fc92e1d1a5249a561ea5308b0f Mon Sep 17 00:00:00 2001 From: graehl Date: Wed, 11 Aug 2010 19:18:36 +0000 Subject: 64 bit int constant git-svn-id: https://ws10smt.googlecode.com/svn/trunk@527 ec762483-ff6d-05da-a07a-a48fb63a330f --- utils/murmur_hash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'utils') diff --git a/utils/murmur_hash.h b/utils/murmur_hash.h index 8dbd7807..6063d524 100755 --- a/utils/murmur_hash.h +++ b/utils/murmur_hash.h @@ -15,7 +15,7 @@ static const uint32_t DEFAULT_SEED=2654435769U; inline uint64_t MurmurHash64( const void * key, int len, unsigned int seed=DEFAULT_SEED ) { - const uint64_t m = 0xc6a4a7935bd1e995; + const uint64_t m = 0xc6a4a7935bd1e995ULL; const int r = 47; uint64_t h = seed ^ (len * m); -- cgit v1.2.3