We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfda740 commit 2c05dc7Copy full SHA for 2c05dc7
src/hash.cpp
@@ -16,7 +16,7 @@ inline uint32_t ROTL32(uint32_t x, int8_t r)
16
17
unsigned int MurmurHash3(unsigned int nHashSeed, Span<const unsigned char> vDataToHash)
18
{
19
- // The following is MurmurHash3 (x86_32), see https://code.google.com/p/smhasher/source/browse/trunk/MurmurHash3.cpp
+ // The following is MurmurHash3 (x86_32), see https://github.com/aappleby/smhasher/blob/master/src/MurmurHash3.cpp
20
uint32_t h1 = nHashSeed;
21
const uint32_t c1 = 0xcc9e2d51;
22
const uint32_t c2 = 0x1b873593;
0 commit comments