diff options
| author | Nicolas van Kempen <nvankemp@gmail.com> | 2023-06-20 13:38:31 -0400 |
|---|---|---|
| committer | Nicolas van Kempen <nvankemp@gmail.com> | 2023-06-20 13:38:31 -0400 |
| commit | 4ef2f2c710da2f3719d445af7ac88a34d8c6df94 (patch) | |
| tree | ebca0a31b4d2d1a3f9b561b390e2375f4c9792b2 /Source/Core | |
| parent | 27db8d412391dbbc8bc51413cb5867ecddaea539 (diff) | |
Rename Symbol constructor parameter to prevent shadowing
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Common/SymbolDB.h | 2 |
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); |
