Skip to content

Commit ccea0e1

Browse files
author
MacroFake
committed
Merge bitcoin/bitcoin#25959: doc: Fix link to MurmurHash3.cpp (moved from Google Code to Github)
2c05dc7 Fix link to MurmurHash3.cpp from Austin Appleby (dontbyte) Pull request description: Google Code repo doesn't exist anymore ACKs for top commit: Zero-1729: crACK 2c05dc7 Tree-SHA512: 3e095255757b536f382ffb63e4292413592246c2446d486acbb71c52e4a3ece519d7cfae941685d9e25fd62de5c783510b3d076cd990a3d391496dc3076a0385
2 parents f821fc9 + 2c05dc7 commit ccea0e1

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)