fix templates to work with pre c++11

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200333 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Nick Kledzik 2014-01-28 19:33:09 +00:00
parent 4ed4bd0fee
commit 79877dc150

View File

@ -208,7 +208,7 @@ public:
/// Copy a ArrayRef<T> by allocating copy in BumpPtrAllocator.
template <typename T>
typename enable_if<isPodLike<T>, ArrayRef<T>>::type
typename enable_if<isPodLike<T>, ArrayRef<T> >::type
allocateCopy(ArrayRef<T> Src) {
size_t Length = Src.size();
T *P = allocateCopy(Src.data(), Length*sizeof(T));