mirror of https://github.com/facebook/rocksdb.git
Remove extra semi colon from internal_repo_rocksdb/repo/util/murmurhash.cc (#12270)
Summary: Pull Request resolved: https://github.com/facebook/rocksdb/pull/12270 `-Wextra-semi` or `-Wextra-semi-stmt` If the code compiles, this is safe to land. Reviewed By: jaykorean Differential Revision: D52965944 fbshipit-source-id: 625d47662e984db9ce06e72ff39025b8a24aa246
This commit is contained in:
parent
28ba896f19
commit
14633148a7
|
@ -64,7 +64,7 @@ uint64_t MurmurHash64A ( const void * key, int len, unsigned int seed )
|
|||
case 2: h ^= ((uint64_t)data2[1]) << 8; FALLTHROUGH_INTENDED;
|
||||
case 1: h ^= ((uint64_t)data2[0]);
|
||||
h *= m;
|
||||
};
|
||||
}
|
||||
|
||||
h ^= h >> r;
|
||||
h *= m;
|
||||
|
|
Loading…
Reference in New Issue