0
0
mirror of https://git.tardis.systems/mirrors/yuzu.git synced 2025-01-03 03:54:45 +00:00

symbols: Replace an insert call with emplace

This commit is contained in:
Lioncash 2015-09-30 11:55:58 -04:00
parent 65d7a82db4
commit 8cb2bc748d

View File

@ -23,7 +23,7 @@ namespace Symbols
symbol.size = size;
symbol.type = type;
g_symbols.insert(TSymbolsPair(address, symbol));
g_symbols.emplace(address, symbol);
}
}