Title: [240268] trunk/Source/WebCore
Revision
240268
Author
[email protected]
Date
2019-01-22 11:06:42 -0800 (Tue, 22 Jan 2019)

Log Message

[GTK] Build fix for Ubuntu LTS 16.04
https://bugs.webkit.org/show_bug.cgi?id=193672

Unreviewed build fix.


* html/canvas/CanvasStyle.h: Add default copy constructor for
CMYKAColor struct.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (240267 => 240268)


--- trunk/Source/WebCore/ChangeLog	2019-01-22 19:03:53 UTC (rev 240267)
+++ trunk/Source/WebCore/ChangeLog	2019-01-22 19:06:42 UTC (rev 240268)
@@ -1,3 +1,13 @@
+2019-01-22  Claudio Saavedra  <[email protected]>
+
+        [GTK] Build fix for Ubuntu LTS 16.04
+        https://bugs.webkit.org/show_bug.cgi?id=193672
+
+        Unreviewed build fix.
+
+        * html/canvas/CanvasStyle.h: Add default copy constructor for
+        CMYKAColor struct.
+
 2019-01-22  David Kilzer  <[email protected]>
 
         Leak of NSMutableArray (128 bytes) in com.apple.WebKit.WebContent running WebKit layout tests

Modified: trunk/Source/WebCore/html/canvas/CanvasStyle.h (240267 => 240268)


--- trunk/Source/WebCore/html/canvas/CanvasStyle.h	2019-01-22 19:03:53 UTC (rev 240267)
+++ trunk/Source/WebCore/html/canvas/CanvasStyle.h	2019-01-22 19:06:42 UTC (rev 240268)
@@ -76,6 +76,8 @@
         float y { 0 };
         float k { 0 };
         float a { 0 };
+
+        CMYKAColor(const CMYKAColor&) = default;
     };
 
     struct CurrentColor {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to