Update TwoLevelHashTable.h

This commit is contained in:
alexey-milovidov 2018-09-20 20:44:10 +03:00 committed by GitHub
parent a52de29fbf
commit 06b5c53335
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -275,7 +275,7 @@ public:
iterator ALWAYS_INLINE find(Key x) { return find(x, hash(x)); }
iterator ALWAYS_INLINE find(Key x) const { return find(x, hash(x)); }
const_iterator ALWAYS_INLINE find(Key x) const { return find(x, hash(x)); }
void write(DB::WriteBuffer & wb) const