Update FunctionsHashing.h

This commit is contained in:
alexey-milovidov 2018-08-06 20:04:32 +03:00 committed by GitHub
parent efddb89d18
commit 38c2b2c8ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -725,11 +725,11 @@ struct MurmurHash3Impl64
{
union
{
UInt64 h, h1;
char bytes[sizeof(h) * 2];
UInt64 h[2];
char bytes[16];
};
MurmurHash3_x64_128(data, size, 0, bytes);
return intHash64(h ^ intHash64(h1));
return h[0] ^ h[1];
}
};