| Index: third_party/WebKit/Source/platform/heap/Visitor.h
|
| diff --git a/third_party/WebKit/Source/platform/heap/Visitor.h b/third_party/WebKit/Source/platform/heap/Visitor.h
|
| index a32b7c931114d01a576559bd86a6a2c245a4a7e6..f7d877e801561176922bb5c4ac9eb66ffaf23cc7 100644
|
| --- a/third_party/WebKit/Source/platform/heap/Visitor.h
|
| +++ b/third_party/WebKit/Source/platform/heap/Visitor.h
|
| @@ -187,7 +187,7 @@ public:
|
| void trace(const T& t)
|
| {
|
| static_assert(sizeof(T), "T must be fully defined");
|
| - if (WTF::IsPolymorphic<T>::value) {
|
| + if (std::is_polymorphic<T>::value) {
|
| intptr_t vtable = *reinterpret_cast<const intptr_t*>(&t);
|
| if (!vtable)
|
| return;
|
|
|