aboutsummaryrefslogtreecommitdiff
path: root/src/hash.cpp
diff options
context:
space:
mode:
authorpracticalswift <[email protected]>2017-01-14 21:45:32 +0100
committerpracticalswift <[email protected]>2017-01-14 21:45:32 +0100
commit8fc698935f01a9f0675e509761fb69be8d43e80a (patch)
tree201d7116d80819c3fc4009487c73629e2e2a72db /src/hash.cpp
parentMerge #9525: test: Include tx data in EXTRA_DIST (diff)
downloaddiscoin-8fc698935f01a9f0675e509761fb69be8d43e80a.tar.xz
discoin-8fc698935f01a9f0675e509761fb69be8d43e80a.zip
Remove redundant semicolons
Diffstat (limited to 'src/hash.cpp')
-rw-r--r--src/hash.cpp2
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;
- };
+ }
}
//----------