diff options
author | dontbyte <25500244+dontbyte@users.noreply.github.com> | 2022-08-30 13:52:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-30 13:52:45 +0200 |
commit | 2c05dc7811db4fe61d7f30fc9b46c374f75226c5 (patch) | |
tree | 45931d20a10780a13c729bec2a46cbdb924860a7 /src/hash.cpp | |
parent | cfda740b332c77800f9bb2506d840dad3f4938c0 (diff) |
Fix link to MurmurHash3.cpp from Austin Appleby
Google Code repo doesn't exist anymore
Diffstat (limited to 'src/hash.cpp')
-rw-r--r-- | src/hash.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hash.cpp b/src/hash.cpp index 111b707964..06caaac6ee 100644 --- a/src/hash.cpp +++ b/src/hash.cpp @@ -16,7 +16,7 @@ inline uint32_t ROTL32(uint32_t x, int8_t r) unsigned int MurmurHash3(unsigned int nHashSeed, Span<const unsigned char> vDataToHash) { - // 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 uint32_t h1 = nHashSeed; const uint32_t c1 = 0xcc9e2d51; const uint32_t c2 = 0x1b873593; |