Fix util::hash_table_iterator::advance
This commit is contained in:
parent
dbeee752b7
commit
1e74639ff4
1 changed files with 1 additions and 1 deletions
|
|
@ -77,7 +77,7 @@ namespace psemek::util
|
||||||
|
|
||||||
void advance()
|
void advance()
|
||||||
{
|
{
|
||||||
while (!(p_->value) && p_ != end_)
|
while (p_ != end_ && !(p_->value))
|
||||||
++p_;
|
++p_;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue