diff options
author | Lioncash <mathew1800@gmail.com> | 2015-09-30 17:55:58 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2015-09-30 17:55:58 +0200 |
commit | 8cb2bc748d56cb0f0cb0f432e17fc6db73311696 (patch) | |
tree | 98469a5b749f32c120d411da13064653ba9a82c2 /src | |
parent | symbols: Get rid of initial underscores in variable names (diff) | |
download | yuzu-8cb2bc748d56cb0f0cb0f432e17fc6db73311696.tar yuzu-8cb2bc748d56cb0f0cb0f432e17fc6db73311696.tar.gz yuzu-8cb2bc748d56cb0f0cb0f432e17fc6db73311696.tar.bz2 yuzu-8cb2bc748d56cb0f0cb0f432e17fc6db73311696.tar.lz yuzu-8cb2bc748d56cb0f0cb0f432e17fc6db73311696.tar.xz yuzu-8cb2bc748d56cb0f0cb0f432e17fc6db73311696.tar.zst yuzu-8cb2bc748d56cb0f0cb0f432e17fc6db73311696.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/common/symbols.cpp | 2 |
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 symbol.size = size; symbol.type = type; - g_symbols.insert(TSymbolsPair(address, symbol)); + g_symbols.emplace(address, symbol); } } |