1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:57:35 +00:00

AK: Change HashTable and HashMap size/capacity to be ints.

This commit is contained in:
Andreas Kling 2019-05-06 13:28:52 +02:00
parent ac67a2ed5e
commit fafdda8902
2 changed files with 21 additions and 21 deletions

View file

@ -48,8 +48,8 @@ public:
}
bool is_empty() const { return m_table.is_empty(); }
unsigned size() const { return m_table.size(); }
unsigned capacity() const { return m_table.capacity(); }
int size() const { return m_table.size(); }
int capacity() const { return m_table.capacity(); }
void clear() { m_table.clear(); }
void set(const K&, const V&);