Title: [207232] trunk/Source/WebCore
Revision
207232
Author
[email protected]
Date
2016-10-12 12:18:59 -0700 (Wed, 12 Oct 2016)

Log Message

[SOUP] trunk r207192 fails to compile due to missing std::function being unavailable (missing #include <functional>)
https://bugs.webkit.org/show_bug.cgi?id=163340

Patch by Jeremy Huddleston Sequoia <[email protected]> on 2016-10-12
Reviewed by Michael Catanzaro.

* platform/network/soup/SoupNetworkSession.h: Add missing #include <functional>

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (207231 => 207232)


--- trunk/Source/WebCore/ChangeLog	2016-10-12 19:03:26 UTC (rev 207231)
+++ trunk/Source/WebCore/ChangeLog	2016-10-12 19:18:59 UTC (rev 207232)
@@ -1,3 +1,12 @@
+2016-10-12  Jeremy Huddleston Sequoia  <[email protected]>
+
+        [SOUP] trunk r207192 fails to compile due to missing std::function being unavailable (missing #include <functional>)
+        https://bugs.webkit.org/show_bug.cgi?id=163340
+
+        Reviewed by Michael Catanzaro.
+
+        * platform/network/soup/SoupNetworkSession.h: Add missing #include <functional>
+
 2016-10-12  Brent Fulgham  <[email protected]>
 
         [WebGL] Revise vertex array attribute checks to account for lazy memory allocation.

Modified: trunk/Source/WebCore/platform/network/soup/SoupNetworkSession.h (207231 => 207232)


--- trunk/Source/WebCore/platform/network/soup/SoupNetworkSession.h	2016-10-12 19:03:26 UTC (rev 207231)
+++ trunk/Source/WebCore/platform/network/soup/SoupNetworkSession.h	2016-10-12 19:18:59 UTC (rev 207232)
@@ -26,6 +26,7 @@
 #ifndef SoupNetworkSession_h
 #define SoupNetworkSession_h
 
+#include <functional>
 #include <wtf/Noncopyable.h>
 #include <wtf/Vector.h>
 #include <wtf/glib/GRefPtr.h>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to