1
Fork 0
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:
Andreas Kling 2022-03-06 19:14:29 +01:00
parent 623bdd8b6a
commit eb829924da
2 changed files with 3 additions and 8 deletions

View file

@ -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)