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:
parent
ac67a2ed5e
commit
fafdda8902
2 changed files with 21 additions and 21 deletions
|
@ -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&);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue