mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-03 18:32:50 +00:00
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:
parent
4ed4bd0fee
commit
79877dc150
@ -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));
|
||||
|
Loading…
x
Reference in New Issue
Block a user