mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 06:17:35 +00:00
AK: Annotate Trie functions as [[nodiscard]]
This commit is contained in:
parent
75e7c780e7
commit
56ab0da6a4
1 changed files with 1 additions and 1 deletions
|
@ -201,7 +201,7 @@ public:
|
||||||
ConstIterator begin() const { return ConstIterator(*this); }
|
ConstIterator begin() const { return ConstIterator(*this); }
|
||||||
ConstIterator end() const { return ConstIterator::end(); }
|
ConstIterator end() const { return ConstIterator::end(); }
|
||||||
|
|
||||||
bool is_empty() const { return m_children.is_empty(); }
|
[[nodiscard]] bool is_empty() const { return m_children.is_empty(); }
|
||||||
void clear() { m_children.clear(); }
|
void clear() { m_children.clear(); }
|
||||||
|
|
||||||
BaseType deep_copy()
|
BaseType deep_copy()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue