| Index: Source/platform/heap/HeapTest.cpp
|
| diff --git a/Source/platform/heap/HeapTest.cpp b/Source/platform/heap/HeapTest.cpp
|
| index 84a55e4005878aa54cd4883c0d94fafd3a2fbfb6..751275a0f84e2c54180fa1b6fcfe1cff08e1b867 100644
|
| --- a/Source/platform/heap/HeapTest.cpp
|
| +++ b/Source/platform/heap/HeapTest.cpp
|
| @@ -1767,7 +1767,7 @@ TEST(HeapTest, BasicFunctionality)
|
| persistents[i] = 0;
|
| }
|
|
|
| - uint8_t* address = reinterpret_cast<uint8_t*>(Heap::reallocate<DynamicallySizedObject>(0, 100));
|
| + uint8_t* address = reinterpret_cast<uint8_t*>(Heap::allocate<DynamicallySizedObject>(100));
|
| for (int i = 0; i < 100; i++)
|
| address[i] = i;
|
| address = reinterpret_cast<uint8_t*>(Heap::reallocate<DynamicallySizedObject>(address, 100000));
|
| @@ -1872,6 +1872,7 @@ class SimpleFinalizedEagerObjectBase : public GarbageCollectedFinalized<SimpleFi
|
| public:
|
| virtual ~SimpleFinalizedEagerObjectBase() { }
|
| DEFINE_INLINE_TRACE() { }
|
| +
|
| EAGERLY_FINALIZE();
|
| protected:
|
| SimpleFinalizedEagerObjectBase() { }
|
|
|