symbols: Replace an insert call with emplace
This commit is contained in:
parent
3564f8ae6f
commit
84a0b184f5
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ namespace Symbols
|
|||
symbol.size = size;
|
||||
symbol.type = type;
|
||||
|
||||
g_symbols.insert(TSymbolsPair(address, symbol));
|
||||
g_symbols.emplace(address, symbol);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue