diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2004-01-27 19:51:18 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2004-01-27 19:51:18 (GMT) |
commit | 6b6971a2c220150663459a7dc98ffa39501f85fd (patch) | |
tree | 668bb6c7045e46fbe7250321cd26279061560cd8 /Source/cmSystemTools.cxx | |
parent | d13e30f3ae02444682a2e593768020b9d11b6b54 (diff) | |
download | CMake-6b6971a2c220150663459a7dc98ffa39501f85fd.zip CMake-6b6971a2c220150663459a7dc98ffa39501f85fd.tar.gz CMake-6b6971a2c220150663459a7dc98ffa39501f85fd.tar.bz2 |
BUG: fix FMM
Diffstat (limited to 'Source/cmSystemTools.cxx')
-rw-r--r-- | Source/cmSystemTools.cxx | 2 |
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; } } }; |