Tag, TagGroup use UnorderedSet

Signed-off-by: James Cherry <[email protected]>
This commit is contained in:
James Cherry
2021-12-09 18:19:26 -07:00
parent d138fc1a15
commit ddefa2a28d
5 changed files with 30 additions and 17 deletions
+5
View File
@@ -31,6 +31,11 @@ public:
{
}
explicit UnorderedSet(size_t size) :
std::unordered_set<KEY, HASH, EQUAL>(size)
{
}
explicit UnorderedSet(size_t size,
const HASH &hash,
const EQUAL &equal) :