cmTarget: Port loop to algorithm.
This commit is contained in:
parent
9c22576787
commit
05fec779d3
|
@ -1542,12 +1542,9 @@ void cmTarget::DeleteDependencyForVS6( DependencyMap& depMap,
|
||||||
if( map_itr != depMap.end() )
|
if( map_itr != depMap.end() )
|
||||||
{
|
{
|
||||||
DependencyList& depList = map_itr->second;
|
DependencyList& depList = map_itr->second;
|
||||||
DependencyList::iterator itr;
|
DependencyList::iterator begin =
|
||||||
while( (itr = std::find(depList.begin(), depList.end(), dep)) !=
|
std::remove(depList.begin(), depList.end(), dep);
|
||||||
depList.end() )
|
depList.erase(begin, depList.end());
|
||||||
{
|
|
||||||
depList.erase( itr );
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue