Fix typo in foa table's empty() implementation

This commit is contained in:
Christian Mazakas
2022-09-28 13:48:21 -07:00
parent 6b1ef16e38
commit 855d538ea3

View File

@ -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;}