Make util::hash_table::empty() const
This commit is contained in:
parent
cbd99d1c4d
commit
e79266d7e2
1 changed files with 2 additions and 2 deletions
|
|
@ -519,7 +519,7 @@ namespace psemek::util
|
|||
impl_.clear();
|
||||
}
|
||||
|
||||
bool empty()
|
||||
bool empty() const
|
||||
{
|
||||
return impl_.size() == 0;
|
||||
}
|
||||
|
|
@ -679,7 +679,7 @@ namespace psemek::util
|
|||
return impl_.size();
|
||||
}
|
||||
|
||||
bool empty()
|
||||
bool empty() const
|
||||
{
|
||||
return impl_.size() == 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue