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 7d8a78f72f..1630aaebbb 100644 --- a/AK/HashMap.h +++ b/AK/HashMap.h @@ -54,7 +54,7 @@ public: void set(const K&, const V&); void set(const K&, V&&); void remove(const K&); - void removeOneRandomly() { m_table.remove(m_table.begin()); } + void remove_one_randomly() { m_table.remove(m_table.begin()); } typedef HashTable<Entry, EntryTraits> HashTableType; typedef typename HashTableType::Iterator IteratorType; |