util: add FixedMap::clear

This commit is contained in:
Michael Scire 2021-02-04 02:16:37 -08:00
parent b40da8f445
commit e82ad1cdc5

View file

@ -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(); }
};
}