mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-09 23:30:35 -06:00
cmListCommand: Replace joining loop with cmJoin algorithm.
This commit is contained in:
@@ -533,14 +533,8 @@ bool cmListCommand::HandleRemoveAtCommand(
|
||||
varArgsExpanded.erase(cmRemoveIndices(varArgsExpanded, removed),
|
||||
varArgsExpanded.end());
|
||||
|
||||
std::string value;
|
||||
const char* sep = "";
|
||||
for ( cc = 0; cc < varArgsExpanded.size(); ++ cc )
|
||||
{
|
||||
value += sep;
|
||||
value += varArgsExpanded[cc];
|
||||
sep = ";";
|
||||
}
|
||||
std::string value = cmJoin(varArgsExpanded, ";");
|
||||
|
||||
|
||||
this->Makefile->AddDefinition(listName, value.c_str());
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user