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 264b45ed616936fddd1284997a7c3ff21520e711..e61f28eacd00973fb5493843ed2b049708b76013 100644 |
--- a/third_party/WebKit/Source/wtf/Optional.h |
+++ b/third_party/WebKit/Source/wtf/Optional.h |
@@ -9,7 +9,7 @@ |
#include "wtf/Assertions.h" |
#include "wtf/Noncopyable.h" |
#include "wtf/StdLibExtras.h" |
-#include "wtf/Utility.h" |
+#include <utility> |
namespace WTF { |
@@ -52,7 +52,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: |