diff --git a/include/llvm/Support/Allocator.h b/include/llvm/Support/Allocator.h index 9f7611be023..d259415bc39 100644 --- a/include/llvm/Support/Allocator.h +++ b/include/llvm/Support/Allocator.h @@ -208,7 +208,7 @@ public: /// Copy a ArrayRef by allocating copy in BumpPtrAllocator. template - typename enable_if, ArrayRef>::type + typename enable_if, ArrayRef >::type allocateCopy(ArrayRef Src) { size_t Length = Src.size(); T *P = allocateCopy(Src.data(), Length*sizeof(T));