Browse Source

BUG: fix FMM

Bill Hoffman 22 years ago
parent
commit
6b6971a2c2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/cmSystemTools.cxx

+ 1 - 1
Source/cmSystemTools.cxx

@@ -1203,7 +1203,7 @@ public:
       for(std::vector<char*>::iterator i = this->begin();
           i != this->end(); ++i)
         {
-        delete *i;
+        delete []*i;
         }
     }
 };