Title: [248946] trunk/Source/WebCore
Revision
248946
Author
ape...@igalia.com
Date
2019-08-21 10:08:47 -0700 (Wed, 21 Aug 2019)

Log Message

[GStreamer] Clang warns about mismatched type tag in declarations for ImageOrientation
https://bugs.webkit.org/show_bug.cgi?id=200982

Reviewed by Carlos Alberto Lopez Perez.

No new tests needed.

* platform/graphics/gstreamer/VideoTextureCopierGStreamer.h: Change
type tag in the forward declaration to "struct", hence matching the
actual type definition.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (248945 => 248946)


--- trunk/Source/WebCore/ChangeLog	2019-08-21 17:05:46 UTC (rev 248945)
+++ trunk/Source/WebCore/ChangeLog	2019-08-21 17:08:47 UTC (rev 248946)
@@ -1,3 +1,16 @@
+2019-08-21  Adrian Perez de Castro  <ape...@igalia.com>
+
+        [GStreamer] Clang warns about mismatched type tag in declarations for ImageOrientation
+        https://bugs.webkit.org/show_bug.cgi?id=200982
+
+        Reviewed by Carlos Alberto Lopez Perez.
+
+        No new tests needed.
+
+        * platform/graphics/gstreamer/VideoTextureCopierGStreamer.h: Change
+        type tag in the forward declaration to "struct", hence matching the
+        actual type definition.
+
 2019-08-21  Antti Koivisto  <an...@apple.com>
 
         ASSERTION FAILED: !s_isInvalidatingStyleWithRuleSets in com.apple.WebCore: WebCore::DocumentRuleSets::collectFeatures const

Modified: trunk/Source/WebCore/platform/graphics/gstreamer/VideoTextureCopierGStreamer.h (248945 => 248946)


--- trunk/Source/WebCore/platform/graphics/gstreamer/VideoTextureCopierGStreamer.h	2019-08-21 17:05:46 UTC (rev 248945)
+++ trunk/Source/WebCore/platform/graphics/gstreamer/VideoTextureCopierGStreamer.h	2019-08-21 17:08:47 UTC (rev 248946)
@@ -30,7 +30,7 @@
 namespace WebCore {
 
 class TextureMapperShaderProgram;
-class ImageOrientation;
+struct ImageOrientation;
 
 class VideoTextureCopierGStreamer {
     WTF_MAKE_FAST_ALLOCATED;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to