aboutsummaryrefslogtreecommitdiff
path: root/src/hash.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2017-02-02 10:21:06 +0100
committerWladimir J. van der Laan <[email protected]>2017-02-02 11:57:40 +0100
commit4e19efba033167ee530d36e22f404b74b09f7955 (patch)
treefd08c1a26178d215c70b90b85d1c7f7cb526125e /src/hash.cpp
parentMerge #9580: Fix various minor linearization script issues (diff)
parentRemove redundant semicolons (diff)
downloaddiscoin-4e19efba033167ee530d36e22f404b74b09f7955.tar.xz
discoin-4e19efba033167ee530d36e22f404b74b09f7955.zip
Merge #9556: Remove redundant semicolons
8fc6989 Remove redundant semicolons (practicalswift)
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;
- };
+ }
}
//----------