diff options
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llcommon/lldictionary.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/lldictionary.h b/indra/llcommon/lldictionary.h index 3e86767d7e..18664e340e 100644 --- a/indra/llcommon/lldictionary.h +++ b/indra/llcommon/lldictionary.h @@ -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; } |