mirror of https://github.com/facebook/rocksdb.git
Remove extra semi colon from internal_repo_rocksdb/repo/util/ribbon_impl.h (#12269)
Summary: Pull Request resolved: https://github.com/facebook/rocksdb/pull/12269 `-Wextra-semi` or `-Wextra-semi-stmt` If the code compiles, this is safe to land. Reviewed By: jaykorean Differential Revision: D52969093 fbshipit-source-id: 0520085819fa785679c859b63b877931d3f71f2c
This commit is contained in:
parent
14633148a7
commit
fc25ac0f3b
|
@ -168,11 +168,11 @@ class StandardHasher {
|
|||
|
||||
inline Hash GetHash(const Key& key) const {
|
||||
return TypesAndSettings::HashFn(key, raw_seed_);
|
||||
};
|
||||
}
|
||||
// For when AddInput == pair<Key, ResultRow> (kIsFilter == false)
|
||||
inline Hash GetHash(const std::pair<Key, ResultRow>& bi) const {
|
||||
return GetHash(bi.first);
|
||||
};
|
||||
}
|
||||
inline Index GetStart(Hash h, Index num_starts) const {
|
||||
// This is "critical path" code because it's required before memory
|
||||
// lookup.
|
||||
|
|
Loading…
Reference in New Issue