I see compilation problems with std::multimap::emplace on a old system so lets avoid that

This commit is contained in:
Daniel Marjamäki 2018-04-14 15:19:04 +02:00
parent 024f84ea60
commit 4e820b6c4a
1 changed files with 1 additions and 1 deletions

View File

@ -1016,7 +1016,7 @@ public:
const Function * back = &functionList.back();
functionMap.emplace(back->tokenDef->str(), back);
functionMap[back->tokenDef->str()] = back;
}
bool hasDefaultConstructor() const;