From acb099472ec95afa20aeee8fddc851478a6500b4 Mon Sep 17 00:00:00 2001 From: Chandler Carruth Date: Wed, 16 Apr 2014 09:21:29 +0000 Subject: [PATCH] [Allocator] Nuke to useless functions. The implicit ones are sufficient here (obviously). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@206369 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Support/Allocator.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/include/llvm/Support/Allocator.h b/include/llvm/Support/Allocator.h index 82c200abd06..a2923fdd691 100644 --- a/include/llvm/Support/Allocator.h +++ b/include/llvm/Support/Allocator.h @@ -94,9 +94,6 @@ public: class MallocAllocator : public AllocatorBase { public: - MallocAllocator() {} - ~MallocAllocator() {} - void Reset() {} void *Allocate(size_t Size, size_t /*Alignment*/) { return malloc(Size); }