Title: [261823] trunk/Source/WebCore
Revision
261823
Author
pvol...@apple.com
Date
2020-05-18 11:36:55 -0700 (Mon, 18 May 2020)

Log Message

[Win] Fix AppleWin build
https://bugs.webkit.org/show_bug.cgi?id=212030

Reviewed by Brent Fulgham.

The build fails because the number of bitfields in GreaterThanOrSameSizeAsStyleRareInheritedData does not match the
actual number of bitfields in StyleRareInheritedData.

* rendering/style/StyleRareInheritedData.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (261822 => 261823)


--- trunk/Source/WebCore/ChangeLog	2020-05-18 18:05:03 UTC (rev 261822)
+++ trunk/Source/WebCore/ChangeLog	2020-05-18 18:36:55 UTC (rev 261823)
@@ -1,3 +1,15 @@
+2020-05-18  Per Arne Vollan  <pvol...@apple.com>
+
+        [Win] Fix AppleWin build
+        https://bugs.webkit.org/show_bug.cgi?id=212030
+
+        Reviewed by Brent Fulgham.
+
+        The build fails because the number of bitfields in GreaterThanOrSameSizeAsStyleRareInheritedData does not match the
+        actual number of bitfields in StyleRareInheritedData.
+
+        * rendering/style/StyleRareInheritedData.cpp:
+
 2020-05-18  Rob Buis  <rb...@igalia.com>
 
         Remove certain headers when a redirect causes a request method change

Modified: trunk/Source/WebCore/rendering/style/StyleRareInheritedData.cpp (261822 => 261823)


--- trunk/Source/WebCore/rendering/style/StyleRareInheritedData.cpp	2020-05-18 18:05:03 UTC (rev 261822)
+++ trunk/Source/WebCore/rendering/style/StyleRareInheritedData.cpp	2020-05-18 18:36:55 UTC (rev 261823)
@@ -49,7 +49,7 @@
     TextUnderlineOffset offset;
     TextDecorationThickness thickness;
     void* customPropertyDataRefs[1];
-    unsigned bitfields[4];
+    unsigned bitfields[6];
     short pagedMediaShorts[2];
     TabSize tabSize;
     short hyphenationShorts[3];
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to