| Index: Source/platform/heap/Heap.h
|
| diff --git a/Source/platform/heap/Heap.h b/Source/platform/heap/Heap.h
|
| index 6dec9e0a89de94e8247627cfcd06d3dfaa54415a..da000056bcfe10a7934aa0475e352443730aa9e3 100644
|
| --- a/Source/platform/heap/Heap.h
|
| +++ b/Source/platform/heap/Heap.h
|
| @@ -1695,6 +1695,12 @@ public:
|
| }
|
|
|
| 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);
|
|
|