summaryrefslogtreecommitdiffstats
path: root/Source/cmSystemTools.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2004-01-27 19:51:18 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2004-01-27 19:51:18 (GMT)
commit6b6971a2c220150663459a7dc98ffa39501f85fd (patch)
tree668bb6c7045e46fbe7250321cd26279061560cd8 /Source/cmSystemTools.cxx
parentd13e30f3ae02444682a2e593768020b9d11b6b54 (diff)
downloadCMake-6b6971a2c220150663459a7dc98ffa39501f85fd.zip
CMake-6b6971a2c220150663459a7dc98ffa39501f85fd.tar.gz
CMake-6b6971a2c220150663459a7dc98ffa39501f85fd.tar.bz2
BUG: fix FMM
Diffstat (limited to 'Source/cmSystemTools.cxx')
-rw-r--r--Source/cmSystemTools.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx
index e3a9028..43206c8 100644
--- a/Source/cmSystemTools.cxx
+++ b/Source/cmSystemTools.cxx
@@ -1203,7 +1203,7 @@ public:
for(std::vector<char*>::iterator i = this->begin();
i != this->end(); ++i)
{
- delete *i;
+ delete []*i;
}
}
};