| Index: third_party/WebKit/Source/platform/heap/Handle.h
|
| diff --git a/third_party/WebKit/Source/platform/heap/Handle.h b/third_party/WebKit/Source/platform/heap/Handle.h
|
| index 1c723468434d49f130be1f9c04b6e6c655227fa8..64e43fd71243011277fb2052e26dfe146148b0dc 100644
|
| --- a/third_party/WebKit/Source/platform/heap/Handle.h
|
| +++ b/third_party/WebKit/Source/platform/heap/Handle.h
|
| @@ -771,11 +771,7 @@ public:
|
| checkPointer();
|
| }
|
|
|
| - T* get() const
|
| - {
|
| - static_assert(IsFullyDefined<T>::value, "T is not fully defined.");
|
| - return m_raw;
|
| - }
|
| + T* get() const { return m_raw; }
|
|
|
| void clear() { m_raw = nullptr; }
|
|
|
| @@ -783,8 +779,6 @@ public:
|
| protected:
|
| void checkPointer()
|
| {
|
| - static_assert(IsFullyDefined<T>::value, "T is not fully defined.");
|
| -
|
| #if ENABLE(ASSERT) && defined(ADDRESS_SANITIZER)
|
| if (!m_raw)
|
| return;
|
|
|