diff options
| author | practicalswift <[email protected]> | 2017-01-14 21:45:32 +0100 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2017-01-14 21:45:32 +0100 |
| commit | 8fc698935f01a9f0675e509761fb69be8d43e80a (patch) | |
| tree | 201d7116d80819c3fc4009487c73629e2e2a72db /src/hash.cpp | |
| parent | Merge #9525: test: Include tx data in EXTRA_DIST (diff) | |
| download | discoin-8fc698935f01a9f0675e509761fb69be8d43e80a.tar.xz discoin-8fc698935f01a9f0675e509761fb69be8d43e80a.zip | |
Remove redundant semicolons
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 a399ca925..a14a2386a 100644 --- a/src/hash.cpp +++ b/src/hash.cpp @@ -57,7 +57,7 @@ unsigned int MurmurHash3(unsigned int nHashSeed, const std::vector<unsigned char k1 = ROTL32(k1, 15); k1 *= c2; h1 ^= k1; - }; + } } //---------- |