Remove redundant semicolons

This commit is contained in:
practicalswift
2017-01-14 21:45:32 +01:00
parent 02e5308c1b
commit 8fc698935f
3 changed files with 4 additions and 4 deletions

View File

@@ -57,7 +57,7 @@ unsigned int MurmurHash3(unsigned int nHashSeed, const std::vector<unsigned char
k1 = ROTL32(k1, 15);
k1 *= c2;
h1 ^= k1;
};
}
}
//----------