| 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 b64af3cdca44d469834aa73eaf059958667dfc50..c4f931ee7eb8c5c92af2a3edd945221dfe35b578 100644
|
| --- a/third_party/WebKit/Source/wtf/Optional.h
|
| +++ b/third_party/WebKit/Source/wtf/Optional.h
|
| @@ -9,9 +9,9 @@
|
| #include "wtf/Assertions.h"
|
| #include "wtf/Noncopyable.h"
|
| #include "wtf/StdLibExtras.h"
|
| -#include "wtf/Utility.h"
|
|
|
| #include <new>
|
| +#include <utility>
|
|
|
| namespace WTF {
|
|
|
| @@ -54,7 +54,7 @@ public:
|
| {
|
| RELEASE_ASSERT(!m_ptr);
|
| m_ptr = reinterpret_cast_ptr<T*>(&m_storage.buffer);
|
| - new (m_ptr) T(forward<Args>(args)...);
|
| + new (m_ptr) T(std::forward<Args>(args)...);
|
| }
|
|
|
| private:
|
|
|