| Index: third_party/WebKit/Source/platform/heap/HeapTest.cpp
|
| diff --git a/third_party/WebKit/Source/platform/heap/HeapTest.cpp b/third_party/WebKit/Source/platform/heap/HeapTest.cpp
|
| index 7738623afd7e153052fc57af8f7d5803bc53044a..b803b70edf34496862ea7a12356a1b591c640194 100644
|
| --- a/third_party/WebKit/Source/platform/heap/HeapTest.cpp
|
| +++ b/third_party/WebKit/Source/platform/heap/HeapTest.cpp
|
| @@ -521,7 +521,7 @@ public:
|
| // terminating, preventing access to a finalized heap.
|
| for (auto& globalIntWrapper : m_crossPersistents) {
|
| ASSERT(globalIntWrapper.get());
|
| - EXPECT_FALSE(globalIntWrapper.get()->get());
|
| + EXPECT_FALSE(static_cast<bool>(*globalIntWrapper.get()));
|
| }
|
| }
|
|
|
|
|