replaced tab by spaces
This commit is contained in:
parent
84b281209a
commit
6470b21f59
@ -401,11 +401,11 @@ uint64_t MurmurHash64A (const void * key, int len, unsigned int seed) {
|
|||||||
uint64_t k;
|
uint64_t k;
|
||||||
|
|
||||||
#if (BYTE_ORDER == LITTLE_ENDIAN)
|
#if (BYTE_ORDER == LITTLE_ENDIAN)
|
||||||
#ifdef USE_ALIGNED_ACCESS
|
#ifdef USE_ALIGNED_ACCESS
|
||||||
memcpy(&k,data,sizeof(uint64_t));
|
memcpy(&k,data,sizeof(uint64_t));
|
||||||
#else
|
#else
|
||||||
k = *((uint64_t*)data);
|
k = *((uint64_t*)data);
|
||||||
#endif
|
#endif
|
||||||
#else
|
#else
|
||||||
k = (uint64_t) data[0];
|
k = (uint64_t) data[0];
|
||||||
k |= (uint64_t) data[1] << 8;
|
k |= (uint64_t) data[1] << 8;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user