cmListCommand: Implement REVERSE subcommand with std::reverse.

This commit is contained in:
Stephen Kelly 2015-02-15 18:02:56 +01:00
parent 1cecd3a531
commit 67a26764b5
1 changed files with 2 additions and 9 deletions

View File

@ -410,15 +410,8 @@ bool cmListCommand
return false;
}
std::string value;
std::vector<std::string>::reverse_iterator it;
const char* sep = "";
for ( it = varArgsExpanded.rbegin(); it != varArgsExpanded.rend(); ++ it )
{
value += sep;
value += it->c_str();
sep = ";";
}
std::reverse(varArgsExpanded.begin(), varArgsExpanded.end());
std::string value = cmJoin(varArgsExpanded, ";");
this->Makefile->AddDefinition(listName, value.c_str());
return true;