| Index: Source/platform/heap/HeapTest.cpp
|
| diff --git a/Source/platform/heap/HeapTest.cpp b/Source/platform/heap/HeapTest.cpp
|
| index 66225e66123fce69cd68e834a836e21008a8b43c..6af5c6ef25cb87e9522100e05b521c8af935adc3 100644
|
| --- a/Source/platform/heap/HeapTest.cpp
|
| +++ b/Source/platform/heap/HeapTest.cpp
|
| @@ -235,7 +235,8 @@ private:
|
| class CountingVisitor : public Visitor {
|
| public:
|
| CountingVisitor()
|
| - : m_count(0)
|
| + : Visitor(Visitor::GenericVisitorType)
|
| + , m_count(0)
|
| {
|
| }
|
|
|
| @@ -882,7 +883,8 @@ int RefCountedAndGarbageCollected2::s_destructorCalls = 0;
|
| class RefCountedGarbageCollectedVisitor : public CountingVisitor {
|
| public:
|
| RefCountedGarbageCollectedVisitor(int expected, void** objects)
|
| - : m_count(0)
|
| + : Visitor(Visitor::GenericVisitorType)
|
| + , m_count(0)
|
| , m_expectedCount(expected)
|
| , m_expectedObjects(objects)
|
| {
|
|
|