Skip to content

Commit

Permalink
Merge pull request #11979 from nicovank/master
Browse files Browse the repository at this point in the history
Minor fix: Rename Symbol constructor parameter to prevent shadowing
  • Loading branch information
AdmiralCurtiss committed Jun 20, 2023
2 parents deb37f0 + 4ef2f2c commit 5ad2d86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Common/SymbolDB.h
Expand Up @@ -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);

Expand Down

0 comments on commit 5ad2d86

Please sign in to comment.