| Index: Source/platform/heap/Heap.cpp
|
| diff --git a/Source/platform/heap/Heap.cpp b/Source/platform/heap/Heap.cpp
|
| index c3c3eaddbfea5bb8fecfd098a1bce0840bbdaae0..b2076c21cf62e7934a6e695df1120cc38e13a9b2 100644
|
| --- a/Source/platform/heap/Heap.cpp
|
| +++ b/Source/platform/heap/Heap.cpp
|
| @@ -107,11 +107,6 @@ static String classOf(const void* object)
|
| }
|
| #endif
|
|
|
| -static bool vTableInitialized(void* objectPointer)
|
| -{
|
| - return !!(*reinterpret_cast<Address*>(objectPointer));
|
| -}
|
| -
|
| static size_t roundToOsPageSize(size_t size)
|
| {
|
| return (size + WTF::kSystemPageSize - 1) & ~(WTF::kSystemPageSize - 1);
|
|
|