mirror of
https://github.com/Kitware/CMake.git
synced 2025-10-19 19:43:23 +08:00
cmTarget: Port loop to algorithm.
This commit is contained in:
@@ -1542,12 +1542,9 @@ void cmTarget::DeleteDependencyForVS6( DependencyMap& depMap,
|
||||
if( map_itr != depMap.end() )
|
||||
{
|
||||
DependencyList& depList = map_itr->second;
|
||||
DependencyList::iterator itr;
|
||||
while( (itr = std::find(depList.begin(), depList.end(), dep)) !=
|
||||
depList.end() )
|
||||
{
|
||||
depList.erase( itr );
|
||||
}
|
||||
DependencyList::iterator begin =
|
||||
std::remove(depList.begin(), depList.end(), dep);
|
||||
depList.erase(begin, depList.end());
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user