Title: [224587] trunk/Source/WebCore
Revision
224587
Author
[email protected]
Date
2017-11-08 11:08:48 -0800 (Wed, 08 Nov 2017)

Log Message

Unreviewed. Attempting to unbork the WinCairo bot after r224578.

* platform/graphics/cairo/GraphicsContextPlatformPrivateCairo.h:
Add a missing semicolon after the deafult initialization of a member
variable in the GraphicsContextPlatformPrivate class.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (224586 => 224587)


--- trunk/Source/WebCore/ChangeLog	2017-11-08 18:32:24 UTC (rev 224586)
+++ trunk/Source/WebCore/ChangeLog	2017-11-08 19:08:48 UTC (rev 224587)
@@ -1,3 +1,11 @@
+2017-11-08  Zan Dobersek  <[email protected]>
+
+        Unreviewed. Attempting to unbork the WinCairo bot after r224578.
+
+        * platform/graphics/cairo/GraphicsContextPlatformPrivateCairo.h:
+        Add a missing semicolon after the deafult initialization of a member
+        variable in the GraphicsContextPlatformPrivate class.
+
 2017-11-08  Chris Dumez  <[email protected]>
 
         [Service Workers] Support waitUntil() on the 'install' event

Modified: trunk/Source/WebCore/platform/graphics/cairo/GraphicsContextPlatformPrivateCairo.h (224586 => 224587)


--- trunk/Source/WebCore/platform/graphics/cairo/GraphicsContextPlatformPrivateCairo.h	2017-11-08 18:32:24 UTC (rev 224586)
+++ trunk/Source/WebCore/platform/graphics/cairo/GraphicsContextPlatformPrivateCairo.h	2017-11-08 19:08:48 UTC (rev 224587)
@@ -91,7 +91,7 @@
 #if PLATFORM(WIN) || (PLATFORM(GTK) && OS(WINDOWS))
     // NOTE: These may note be needed: review and remove once Cairo implementation is complete
     HDC m_hdc { 0 };
-    bool m_shouldIncludeChildWindows { false }
+    bool m_shouldIncludeChildWindows { false };
 #endif
 };
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to