mirror of
https://gitee.com/zyjblog/oatpp.git
synced 2024-12-22 22:16:37 +08:00
Fix windows build
This commit is contained in:
parent
512769c5ce
commit
926c48f0fb
@ -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);
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user