mirror of
https://github.com/boostorg/unordered.git
synced 2025-07-29 19:07:15 +02:00
Fix typo in foa table's empty() implementation
This commit is contained in:
@ -682,7 +682,7 @@ public:
|
||||
const_iterator cbegin()const noexcept{return begin();}
|
||||
const_iterator cend()const noexcept{return end();}
|
||||
|
||||
bool empty()const noexcept{return size()!=0;}
|
||||
bool empty()const noexcept{return size()==0;}
|
||||
std::size_t size()const noexcept{return size_;}
|
||||
std::size_t max_size()const noexcept{return SIZE_MAX;}
|
||||
|
||||
|
Reference in New Issue
Block a user