Title: [250557] trunk/Source/WebCore
Revision
250557
Author
cdu...@apple.com
Date
2019-10-01 09:18:38 -0700 (Tue, 01 Oct 2019)

Log Message

Unreviewed attempt to fix Windows build after r250527.

* platform/GenericTaskQueue.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (250556 => 250557)


--- trunk/Source/WebCore/ChangeLog	2019-10-01 15:59:36 UTC (rev 250556)
+++ trunk/Source/WebCore/ChangeLog	2019-10-01 16:18:38 UTC (rev 250557)
@@ -1,3 +1,9 @@
+2019-10-01  Chris Dumez  <cdu...@apple.com>
+
+        Unreviewed attempt to fix Windows build after r250527.
+
+        * platform/GenericTaskQueue.h:
+
 2019-10-01  Zan Dobersek  <zdober...@igalia.com>
 
         [CoordGraphics] Implement sync methods for position, bounds origin

Modified: trunk/Source/WebCore/platform/GenericTaskQueue.h (250556 => 250557)


--- trunk/Source/WebCore/platform/GenericTaskQueue.h	2019-10-01 15:59:36 UTC (rev 250556)
+++ trunk/Source/WebCore/platform/GenericTaskQueue.h	2019-10-01 16:18:38 UTC (rev 250557)
@@ -90,6 +90,9 @@
     {
     }
 
+    GenericTaskQueue(GenericTaskQueue&&) = default;
+    GenericTaskQueue& operator=(GenericTaskQueue&&) = default;
+
     typedef WTF::Function<void ()> TaskFunction;
 
     void enqueueTask(TaskFunction&& task)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to