From: Nick Lewycky Date: Sun, 7 Feb 2010 21:13:46 +0000 (+0000) Subject: Make the destructor for TypeMapBase protected. Spotted by Duncan Sands with X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=337c6a8edd6acd6560f8f09f1372d7eca6d8f262;p=oota-llvm.git Make the destructor for TypeMapBase protected. Spotted by Duncan Sands with cppcheck! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95527 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/TypesContext.h b/lib/VMCore/TypesContext.h index 93a801b9f66..7419b0e8945 100644 --- a/lib/VMCore/TypesContext.h +++ b/lib/VMCore/TypesContext.h @@ -216,7 +216,6 @@ protected: /// std::multimap TypesByHash; -public: ~TypeMapBase() { // PATypeHolder won't destroy non-abstract types. // We can't destroy them by simply iterating, because @@ -236,6 +235,7 @@ public: } } +public: void RemoveFromTypesByHash(unsigned Hash, const Type *Ty) { std::multimap::iterator I = TypesByHash.lower_bound(Hash); @@ -281,7 +281,6 @@ class TypeMap : public TypeMapBase { std::map Map; public: typedef typename std::map::iterator iterator; - ~TypeMap() { print("ON EXIT"); } inline TypeClass *get(const ValType &V) { iterator I = Map.find(V);