mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-03 21:00:01 -05:00
Convert raw loops to vector member insert.
This commit is contained in:
@@ -738,11 +738,8 @@ cmLocalUnixMakefileGenerator3
|
||||
// Add the output to the local help if requested.
|
||||
if(in_help)
|
||||
{
|
||||
for (std::vector<std::string>::const_iterator i = outputs.begin();
|
||||
i != outputs.end(); ++i)
|
||||
{
|
||||
this->LocalHelp.push_back(*i);
|
||||
}
|
||||
this->LocalHelp.insert(this->LocalHelp.end(),
|
||||
outputs.begin(), outputs.end());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user