Title: [224882] trunk/Source/WebCore
Revision
224882
Author
ape...@igalia.com
Date
2017-11-15 10:06:05 -0800 (Wed, 15 Nov 2017)

Log Message

[Cairo] Clang warns about mismatched declaration type tag for GraphicsContextState
https://bugs.webkit.org/show_bug.cgi?id=179729

Reviewed by Michael Catanzaro.

No new tests needed.

* platform/graphics/cairo/CairoOperations.h: Make the forward declaration use "struct"
as the actual implementation of the type does.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (224881 => 224882)


--- trunk/Source/WebCore/ChangeLog	2017-11-15 18:04:16 UTC (rev 224881)
+++ trunk/Source/WebCore/ChangeLog	2017-11-15 18:06:05 UTC (rev 224882)
@@ -1,3 +1,15 @@
+2017-11-15  Adrian Perez de Castro  <ape...@igalia.com>
+
+        [Cairo] Clang warns about mismatched declaration type tag for GraphicsContextState
+        https://bugs.webkit.org/show_bug.cgi?id=179729
+
+        Reviewed by Michael Catanzaro.
+
+        No new tests needed.
+
+        * platform/graphics/cairo/CairoOperations.h: Make the forward declaration use "struct" 
+        as the actual implementation of the type does.
+
 2017-11-15  Chris Dumez  <cdu...@apple.com>
 
         [Service Workers] Implement Client API

Modified: trunk/Source/WebCore/platform/graphics/cairo/CairoOperations.h (224881 => 224882)


--- trunk/Source/WebCore/platform/graphics/cairo/CairoOperations.h	2017-11-15 18:04:16 UTC (rev 224881)
+++ trunk/Source/WebCore/platform/graphics/cairo/CairoOperations.h	2017-11-15 18:06:05 UTC (rev 224882)
@@ -48,11 +48,12 @@
 class FloatRoundedRect;
 class FloatSize;
 class GraphicsContext;
-class GraphicsContextState;
 class Image;
 class Path;
 class PlatformContextCairo;
 
+struct GraphicsContextState;
+
 namespace Cairo {
 
 namespace State {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to