Skip to content

Commit 2c05dc7

Browse files
authored
Fix link to MurmurHash3.cpp from Austin Appleby
Google Code repo doesn't exist anymore
1 parent cfda740 commit 2c05dc7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hash.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ inline uint32_t ROTL32(uint32_t x, int8_t r)
1616

1717
unsigned int MurmurHash3(unsigned int nHashSeed, Span<const unsigned char> vDataToHash)
1818
{
19-
// The following is MurmurHash3 (x86_32), see https://code.google.com/p/smhasher/source/browse/trunk/MurmurHash3.cpp
19+
// The following is MurmurHash3 (x86_32), see https://github.com/aappleby/smhasher/blob/master/src/MurmurHash3.cpp
2020
uint32_t h1 = nHashSeed;
2121
const uint32_t c1 = 0xcc9e2d51;
2222
const uint32_t c2 = 0x1b873593;

0 commit comments

Comments
 (0)