Skip to content

Commit

Permalink
Merge bitcoin#25959: doc: Fix link to MurmurHash3.cpp (moved from Goo…
Browse files Browse the repository at this point in the history
…gle 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
  • Loading branch information
MacroFake committed Sep 1, 2022
2 parents f821fc9 + 2c05dc7 commit ccea0e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hash.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit ccea0e1

Please sign in to comment.