Fix windows build

This commit is contained in:
lganzzzo 2021-11-07 03:05:19 +02:00
parent 512769c5ce
commit 926c48f0fb

View File

@ -178,7 +178,7 @@ public:
template<class ItemType>
struct Collection::Inserter<std::unordered_set<ItemType>, ItemType> {
static void insert(std::unordered_set<ItemType>* c, const ItemType& i) {
c->template emplace(i);
c->emplace(i);
}
};