mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-09 22:56:35 +00:00
util: add FixedMap::clear
This commit is contained in:
parent
b40da8f445
commit
e82ad1cdc5
1 changed files with 2 additions and 0 deletions
|
@ -62,6 +62,8 @@ namespace ams::util {
|
||||||
ALWAYS_INLINE std::pair<iterator, bool> insert(const KeyValuePair &pair) { return m_tree.insert(pair); }
|
ALWAYS_INLINE std::pair<iterator, bool> insert(const KeyValuePair &pair) { return m_tree.insert(pair); }
|
||||||
|
|
||||||
ALWAYS_INLINE size_t size() const { return m_tree.size(); }
|
ALWAYS_INLINE size_t size() const { return m_tree.size(); }
|
||||||
|
|
||||||
|
ALWAYS_INLINE void clear() { return m_tree.clear(); }
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue