diff options
Diffstat (limited to 'AK/HashMap.h')
-rw-r--r-- | AK/HashMap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/AK/HashMap.h b/AK/HashMap.h index b1a68abb5b..211618bcbe 100644 --- a/AK/HashMap.h +++ b/AK/HashMap.h @@ -46,7 +46,7 @@ public: return *this; } - bool isEmpty() const { return m_table.isEmpty(); } + bool is_empty() const { return m_table.is_empty(); } unsigned size() const { return m_table.size(); } unsigned capacity() const { return m_table.capacity(); } void clear() { m_table.clear(); } |