summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Lioncash2015-09-30 11:55:58 -0400
committerGravatar Lioncash2015-09-30 11:55:58 -0400
commit8cb2bc748d56cb0f0cb0f432e17fc6db73311696 (patch)
tree98469a5b749f32c120d411da13064653ba9a82c2 /src
parentsymbols: Get rid of initial underscores in variable names (diff)
downloadyuzu-8cb2bc748d56cb0f0cb0f432e17fc6db73311696.tar.gz
yuzu-8cb2bc748d56cb0f0cb0f432e17fc6db73311696.tar.xz
yuzu-8cb2bc748d56cb0f0cb0f432e17fc6db73311696.zip
symbols: Replace an insert call with emplace
Diffstat (limited to 'src')
-rw-r--r--src/common/symbols.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/symbols.cpp b/src/common/symbols.cpp
index 0d7f0324a..db8340043 100644
--- a/src/common/symbols.cpp
+++ b/src/common/symbols.cpp
@@ -23,7 +23,7 @@ namespace Symbols
23 symbol.size = size; 23 symbol.size = size;
24 symbol.type = type; 24 symbol.type = type;
25 25
26 g_symbols.insert(TSymbolsPair(address, symbol)); 26 g_symbols.emplace(address, symbol);
27 } 27 }
28 } 28 }
29 29