From d376531132074f9e47c43855473a82df8b0248c9 Mon Sep 17 00:00:00 2001 From: dontbyte <25500244+dontbyte@users.noreply.github.com> Date: Tue, 30 Aug 2022 13:52:45 +0200 Subject: [PATCH] Fix link to MurmurHash3.cpp from Austin Appleby Google Code repo doesn't exist anymore --- src/hash.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hash.cpp b/src/hash.cpp index 822bd4c880..b05803efae 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 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;