| Index: Source/platform/heap/HeapAllocator.h
|
| diff --git a/Source/platform/heap/HeapAllocator.h b/Source/platform/heap/HeapAllocator.h
|
| index b328dbdc593ca4ae56e561fbd74c8143c0252dd9..cb979bb2c9cc281d3194801b5d0dbcea9478e58f 100644
|
| --- a/Source/platform/heap/HeapAllocator.h
|
| +++ b/Source/platform/heap/HeapAllocator.h
|
| @@ -370,25 +370,6 @@ public:
|
| : Vector<T, inlineCapacity, HeapAllocator>(other)
|
| {
|
| }
|
| -
|
| - template<typename U>
|
| - void append(const U* data, size_t dataSize)
|
| - {
|
| - Vector<T, inlineCapacity, HeapAllocator>::append(data, dataSize);
|
| - }
|
| -
|
| - template<typename U>
|
| - void append(const U& other)
|
| - {
|
| - Vector<T, inlineCapacity, HeapAllocator>::append(other);
|
| - }
|
| -
|
| - template<typename U, size_t otherCapacity>
|
| - void appendVector(const HeapVector<U, otherCapacity>& other)
|
| - {
|
| - const Vector<U, otherCapacity, HeapAllocator>& otherVector = other;
|
| - Vector<T, inlineCapacity, HeapAllocator>::appendVector(otherVector);
|
| - }
|
| };
|
|
|
| template<typename T, size_t inlineCapacity = 0>
|
|
|