Refactoring fixes

This commit is contained in:
Luca 2019-10-11 07:36:06 +02:00
parent 9870eee2e7
commit 263fe3927b
5 changed files with 14 additions and 7 deletions

View file

@ -82,7 +82,7 @@ bool GenericHashEntry::walkable() const {
/* ***************************************** */
bool GenericHashEntry::idle() const {
return((get_state() == hash_entry_state_idle) ? true : false);
return((get_state() >= hash_entry_state_idle) ? true : false);
};
/* ***************************************** */