Add a helper class (APSInt) which can represent an APInt along with sign
[oota-llvm.git] / include / llvm / ADT / StringMap.h
index 3c5f76a3c1c1854f0c84ebdffc49f5fcfc0cd580..cb1dd9f132991d13af3201446c67c36181797b43 100644 (file)
@@ -279,7 +279,7 @@ public:
       if (I->Item && I->Item != getTombstoneVal())
         static_cast<MapEntryTy*>(I->Item)->Destroy(Allocator);
     }
-    delete [] TheTable;
+    free(TheTable);
   }
 };