AK: Annotate HashMap functions with [[nodiscard]]
This commit is contained in:
parent
eaa9ec9b5d
commit
a8671ec166
Notes:
sideshowbarker
2024-07-18 20:32:21 +09:00
Author: https://github.com/bgianfo Commit: https://github.com/SerenityOS/serenity/commit/a8671ec1666 Pull-request: https://github.com/SerenityOS/serenity/pull/6234
1 changed files with 3 additions and 3 deletions
|
@ -64,12 +64,12 @@ public:
|
|||
}
|
||||
#endif
|
||||
|
||||
bool is_empty() const
|
||||
[[nodiscard]] bool is_empty() const
|
||||
{
|
||||
return m_table.is_empty();
|
||||
}
|
||||
size_t size() const { return m_table.size(); }
|
||||
size_t capacity() const { return m_table.capacity(); }
|
||||
[[nodiscard]] size_t size() const { return m_table.size(); }
|
||||
[[nodiscard]] size_t capacity() const { return m_table.capacity(); }
|
||||
void clear() { m_table.clear(); }
|
||||
|
||||
HashSetResult set(const K& key, const V& value) { return m_table.set({ key, value }); }
|
||||
|
|
Loading…
Add table
Reference in a new issue