Update FixedHashTable.h

This commit is contained in:
alexey-milovidov 2020-07-29 14:43:01 +03:00 committed by Alexey Milovidov
parent f1363403b7
commit 7d8eec5652

View File

@ -55,7 +55,7 @@ struct FixedHashTableStoredSize
size_t m_size = 0;
size_t getSize(const Cell *, const typename Cell::State &, size_t) const { return m_size; }
bool isEmpty(const Cell *, const typename Cell::State &, size_t) const { return m_size != 0; }
bool isEmpty(const Cell *, const typename Cell::State &, size_t) const { return m_size == 0; }
void increaseSize() { ++m_size; }
void clearSize() { m_size = 0; }