| Index: third_party/WebKit/Source/wtf/Optional.h
|
| diff --git a/third_party/WebKit/Source/wtf/Optional.h b/third_party/WebKit/Source/wtf/Optional.h
|
| index a28bd804308c3e218f80c575ac77cabae5448102..78c9f2e3ef3fc638ecb3e0d8b325a1d28b1f9ee3 100644
|
| --- a/third_party/WebKit/Source/wtf/Optional.h
|
| +++ b/third_party/WebKit/Source/wtf/Optional.h
|
| @@ -58,7 +58,7 @@ public:
|
| template <typename... Args>
|
| void emplace(Args&&... args)
|
| {
|
| - RELEASE_ASSERT(!m_ptr);
|
| + CHECK(!m_ptr);
|
| m_ptr = reinterpret_cast_ptr<T*>(&m_storage.buffer);
|
| new (m_ptr) T(std::forward<Args>(args)...);
|
| }
|
|
|