Index: Source/platform/heap/ThreadState.h |
diff --git a/Source/platform/heap/ThreadState.h b/Source/platform/heap/ThreadState.h |
index 555b5bd37e486ea54c4a35002626b42c8c52199c..79352b349bfd86465d06eacc2f018ab39135f4d7 100644 |
--- a/Source/platform/heap/ThreadState.h |
+++ b/Source/platform/heap/ThreadState.h |
@@ -467,7 +467,7 @@ public: |
// address ranges for the Blink heap. If the address is in the Blink |
// heap the containing heap page is returned. |
HeapContainsCache* heapContainsCache() { return m_heapContainsCache.get(); } |
- BaseHeapPage* contains(Address); |
+ BaseHeapPage* contains(Address address) { return heapPageFromAddress(address); } |
BaseHeapPage* contains(void* pointer) { return contains(reinterpret_cast<Address>(pointer)); } |
BaseHeapPage* contains(const void* pointer) { return contains(const_cast<void*>(pointer)); } |