Title: [204749] trunk/Source/bmalloc
Revision
204749
Author
utatane....@gmail.com
Date
2016-08-22 17:43:13 -0700 (Mon, 22 Aug 2016)

Log Message

Unreviewed, build fix on GCC environment
https://bugs.webkit.org/show_bug.cgi?id=161058

std::forward is declared in <utility> header.

* bmalloc/ScopeExit.h:

Modified Paths

Diff

Modified: trunk/Source/bmalloc/ChangeLog (204748 => 204749)


--- trunk/Source/bmalloc/ChangeLog	2016-08-23 00:03:15 UTC (rev 204748)
+++ trunk/Source/bmalloc/ChangeLog	2016-08-23 00:43:13 UTC (rev 204749)
@@ -1,3 +1,12 @@
+2016-08-22  Yusuke Suzuki  <utatane....@gmail.com>
+
+        Unreviewed, build fix on GCC environment
+        https://bugs.webkit.org/show_bug.cgi?id=161058
+
+        std::forward is declared in <utility> header.
+
+        * bmalloc/ScopeExit.h:
+
 2016-08-22  Geoffrey Garen  <gga...@apple.com>
 
         bmalloc: speed up the lock slow path

Modified: trunk/Source/bmalloc/bmalloc/ScopeExit.h (204748 => 204749)


--- trunk/Source/bmalloc/bmalloc/ScopeExit.h	2016-08-23 00:03:15 UTC (rev 204748)
+++ trunk/Source/bmalloc/bmalloc/ScopeExit.h	2016-08-23 00:43:13 UTC (rev 204749)
@@ -24,6 +24,7 @@
  */
 
 #include <type_traits>
+#include <utility>
 
 namespace bmalloc {
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to