cmMacroCommand: Inline variable computation.

This commit is contained in:
Stephen Kelly 2015-02-11 20:14:30 +01:00
parent f79c0f7697
commit a551851ab3
1 changed files with 1 additions and 5 deletions

View File

@ -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())
{