Skip to content

Commit

Permalink
Fix warnings about shadowing in GeneratorToolInfo.h (utils)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell committed Sep 8, 2024
1 parent fdc2304 commit d3666fb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions include/edm4hep/GeneratorToolInfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ struct GeneratorToolInfo {

/// Construct a complete tool info object from all ingredients
///
/// @param name The name of the tool
/// @param version The version of the tool
/// @param description The brief description of the tool
GeneratorToolInfo(const std::string& name, const std::string& version, const std::string& description) :
name(name), version(version), description(description){};
/// @param nameTool The name of the tool
/// @param versionTool The version of the tool
/// @param descrTool The brief description of the tool
GeneratorToolInfo(const std::string& nameTool, const std::string& versionTool, const std::string& descrTool) :
name(nameTool), version(versionTool), description(descrTool){};
};

namespace utils {
Expand Down

0 comments on commit d3666fb

Please sign in to comment.