Index: Source/platform/heap/Heap.h |
diff --git a/Source/platform/heap/Heap.h b/Source/platform/heap/Heap.h |
index 2c0ef8038596942ac27a3e792f0a3126c6b71708..a154ba094efba735e7831b4e6db0e54d01bb3f32 100644 |
--- a/Source/platform/heap/Heap.h |
+++ b/Source/platform/heap/Heap.h |
@@ -1663,6 +1663,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); |