X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=include%2Fllvm%2FSupport%2FRecyclingAllocator.h;h=8e957f1b26453de00b74c4821e0439d495941120;hb=0fd38069cb6699ce21eb159f22d3f23c012c9e81;hp=a338c0eb6397c272e9fa723dc70318eef5e2b977;hpb=e14d81deeb6bb3404ffee5e59ecb88304f112f4a;p=oota-llvm.git diff --git a/include/llvm/Support/RecyclingAllocator.h b/include/llvm/Support/RecyclingAllocator.h index a338c0eb639..8e957f1b264 100644 --- a/include/llvm/Support/RecyclingAllocator.h +++ b/include/llvm/Support/RecyclingAllocator.h @@ -15,21 +15,20 @@ #ifndef LLVM_SUPPORT_RECYCLINGALLOCATOR_H #define LLVM_SUPPORT_RECYCLINGALLOCATOR_H -#include #include "llvm/Support/Recycler.h" -#include "llvm/ADT/STLExtras.h" namespace llvm { /// RecyclingAllocator - This class wraps an Allocator, adding the /// functionality of recycling deleted objects. /// -template +template::Alignment> class RecyclingAllocator { private: /// Base - Implementation details. /// - Recycler Base; + Recycler Base; /// Allocator - The wrapped allocator. ///