mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-18 01:46:47 +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 size_t size() const { return m_tree.size(); }
|
||||
|
||||
ALWAYS_INLINE void clear() { return m_tree.clear(); }
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue