mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 05:47:34 +00:00
AK: Remove return value from HashTable::remove() and HashMap::remove()
This was only used by remove_all_matching(), where it's no longer used.
This commit is contained in:
parent
623bdd8b6a
commit
eb829924da
2 changed files with 3 additions and 8 deletions
|
@ -189,9 +189,9 @@ public:
|
|||
return find(value) != end();
|
||||
}
|
||||
|
||||
IteratorType remove(IteratorType it)
|
||||
void remove(IteratorType it)
|
||||
{
|
||||
return m_table.remove(it);
|
||||
m_table.remove(it);
|
||||
}
|
||||
|
||||
V& ensure(const K& key)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue