Use the cmDeleteAll algorithm instead of trivial raw loops.

This commit is contained in:
Stephen Kelly
2015-01-04 13:33:16 +01:00
parent abb4a6781f
commit 4a6e795b0c
17 changed files with 30 additions and 171 deletions
+1 -4
View File
@@ -15,10 +15,7 @@
cmExportSet::~cmExportSet()
{
for(unsigned int i = 0; i < this->TargetExports.size(); ++ i)
{
delete this->TargetExports[i];
}
cmDeleteAll(this->TargetExports);
}
void cmExportSet::AddTargetExport(cmTargetExport* te)