cmListCommand: Replace loop with member algorithm.

This commit is contained in:
Stephen Kelly 2015-01-15 02:59:09 +01:00
parent 92a37f9279
commit b54225732f
1 changed files with 3 additions and 7 deletions

View File

@ -345,13 +345,9 @@ bool cmListCommand::HandleInsertCommand(std::vector<std::string> const& args)
return false;
}
}
size_t cc;
size_t cnt = 0;
for ( cc = 3; cc < args.size(); ++ cc )
{
varArgsExpanded.insert(varArgsExpanded.begin()+item+cnt, args[cc]);
cnt ++;
}
varArgsExpanded.insert(varArgsExpanded.begin()+item,
args.begin() + 3, args.end());
std::string value = cmJoin(varArgsExpanded, ";");
this->Makefile->AddDefinition(listName, value.c_str());