summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorNicolas van Kempen <nvankemp@gmail.com>2023-06-20 13:38:31 -0400
committerNicolas van Kempen <nvankemp@gmail.com>2023-06-20 13:38:31 -0400
commit4ef2f2c710da2f3719d445af7ac88a34d8c6df94 (patch)
treeebca0a31b4d2d1a3f9b561b390e2375f4c9792b2 /Source/Core
parent27db8d412391dbbc8bc51413cb5867ecddaea539 (diff)
Rename Symbol constructor parameter to prevent shadowing
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Common/SymbolDB.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/SymbolDB.h b/Source/Core/Common/SymbolDB.h
index e3882637cb..024255ef18 100644
--- a/Source/Core/Common/SymbolDB.h
+++ b/Source/Core/Common/SymbolDB.h
@@ -38,7 +38,7 @@ struct Symbol
};
Symbol() = default;
- explicit Symbol(const std::string& name) { Rename(name); }
+ explicit Symbol(const std::string& symbol_name) { Rename(symbol_name); }
void Rename(const std::string& symbol_name);