diff options
Diffstat (limited to 'Source/cmMacroCommand.cxx')
-rw-r--r-- | Source/cmMacroCommand.cxx | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Source/cmMacroCommand.cxx b/Source/cmMacroCommand.cxx index 8424c75..6f45484 100644 --- a/Source/cmMacroCommand.cxx +++ b/Source/cmMacroCommand.cxx @@ -86,7 +86,6 @@ bool cmMacroHelperCommand::InvokeInitialPass std::string tmps; cmListFileArgument arg; - std::string variable; // make sure the number of arguments passed is at least the number // required by the signature @@ -119,10 +118,7 @@ bool cmMacroHelperCommand::InvokeInitialPass variables.reserve(this->Args.size() - 1); for (unsigned int j = 1; j < this->Args.size(); ++j) { - std::string variable = "${"; - variable += this->Args[j]; - variable += "}"; - variables.push_back(variable); + variables.push_back("${" + this->Args[j] + "}"); } if(!this->Functions.empty()) { |