Index: Source/platform/heap/Heap.cpp |
diff --git a/Source/platform/heap/Heap.cpp b/Source/platform/heap/Heap.cpp |
index 0ea3d1a38e5f875f2d5025d9c9a0e13823d5b4d4..719fe0f84d90144cfafb6c7d9d4f0dd3c020d559 100644 |
--- a/Source/platform/heap/Heap.cpp |
+++ b/Source/platform/heap/Heap.cpp |
@@ -2738,18 +2738,6 @@ void HeapAllocator::backingShrink(void* address, size_t quantizedCurrentSize, si |
static_cast<NormalPage*>(page)->heapForNormalPage()->shrinkObject(header, quantizedShrunkSize); |
} |
-bool HeapAllocator::shrinkVectorBacking(void* address, size_t quantizedCurrentSize, size_t quantizedShrunkSize) |
-{ |
- backingShrink(address, quantizedCurrentSize, quantizedShrunkSize); |
- return true; |
-} |
- |
-bool HeapAllocator::shrinkInlineVectorBacking(void* address, size_t quantizedCurrentSize, size_t quantizedShrunkSize) |
-{ |
- backingShrink(address, quantizedCurrentSize, quantizedShrunkSize); |
- return true; |
-} |
- |
BasePage* Heap::lookup(Address address) |
{ |
ASSERT(ThreadState::current()->isInGC()); |