diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-01-04 12:33:16 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-01-13 22:00:17 (GMT) |
commit | 4a6e795b0c5cdafbc78f12389ec20d6bc4f9ca34 (patch) | |
tree | b33cf1a4185ae6525c023a2dff210bf3449df197 /Source/cmDependsC.cxx | |
parent | abb4a6781f96b28e4c30014915f566dee9130db7 (diff) | |
download | CMake-4a6e795b0c5cdafbc78f12389ec20d6bc4f9ca34.zip CMake-4a6e795b0c5cdafbc78f12389ec20d6bc4f9ca34.tar.gz CMake-4a6e795b0c5cdafbc78f12389ec20d6bc4f9ca34.tar.bz2 |
Use the cmDeleteAll algorithm instead of trivial raw loops.
Diffstat (limited to 'Source/cmDependsC.cxx')
-rw-r--r-- | Source/cmDependsC.cxx | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/Source/cmDependsC.cxx b/Source/cmDependsC.cxx index a8711eb..5ae065e 100644 --- a/Source/cmDependsC.cxx +++ b/Source/cmDependsC.cxx @@ -90,12 +90,7 @@ cmDependsC::cmDependsC(cmLocalGenerator* lg, cmDependsC::~cmDependsC() { this->WriteCacheFile(); - - for (std::map<std::string, cmIncludeLines*>::iterator it= - this->FileCache.begin(); it!=this->FileCache.end(); ++it) - { - delete it->second; - } + cmDeleteAll(this->FileCache); } //---------------------------------------------------------------------------- |