[Allocator] Nuke to useless functions. The implicit ones are sufficient
[oota-llvm.git] / include / llvm / Support / Allocator.h
index 82c200abd0672f088efd0e1cdf6d54f4ccbd43fa..a2923fdd691ae72ba12285a9e8778b559a09a385 100644 (file)
@@ -94,9 +94,6 @@ public:
 
 class MallocAllocator : public AllocatorBase<MallocAllocator> {
 public:
-  MallocAllocator() {}
-  ~MallocAllocator() {}
-
   void Reset() {}
 
   void *Allocate(size_t Size, size_t /*Alignment*/) { return malloc(Size); }