MacOS build fix

master
Andrey Kleshchev 2023-09-01 00:04:20 +03:00
parent ea9a3c6fbb
commit 488b51b863
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ protected:
}
void addEntry(Index index, Entry *entry)
{
if (!insert(value_type(index, entry)).second)
if (!this->emplace(index, entry).second)
{
LL_ERRS() << "Dictionary entry already added (attempted to add duplicate entry)" << LL_ENDL;
}