Title: [144364] trunk/Source/WebCore
Revision
144364
Author
[email protected]
Date
2013-02-28 13:52:56 -0800 (Thu, 28 Feb 2013)

Log Message

Unreviewed build fix for Windows. Make sure the new bits are unsigned and not bools.

* rendering/RenderBlock.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (144363 => 144364)


--- trunk/Source/WebCore/ChangeLog	2013-02-28 21:52:22 UTC (rev 144363)
+++ trunk/Source/WebCore/ChangeLog	2013-02-28 21:52:56 UTC (rev 144364)
@@ -1,3 +1,9 @@
+2013-02-28  David Hyatt  <[email protected]>
+
+        Unreviewed build fix for Windows. Make sure the new bits are unsigned and not bools.
+
+        * rendering/RenderBlock.h:
+
 2013-02-28  Jochen Eisinger  <[email protected]>
 
         Meta referrer isn't honored for window.open

Modified: trunk/Source/WebCore/rendering/RenderBlock.h (144363 => 144364)


--- trunk/Source/WebCore/rendering/RenderBlock.h	2013-02-28 21:52:22 UTC (rev 144363)
+++ trunk/Source/WebCore/rendering/RenderBlock.h	2013-02-28 21:52:56 UTC (rev 144364)
@@ -1245,8 +1245,8 @@
     RenderLineBoxList m_lineBoxes;   // All of the root line boxes created for this block flow.  For example, <div>Hello<br>world.</div> will have two total lines for the <div>.
 
     mutable signed m_lineHeight : 27;
-    bool m_hasMarginBeforeQuirk : 1; // Note these quirk values can't be put in RenderBlockRareData since they are set too frequently.
-    bool m_hasMarginAfterQuirk : 1;
+    unsigned m_hasMarginBeforeQuirk : 1; // Note these quirk values can't be put in RenderBlockRareData since they are set too frequently.
+    unsigned m_hasMarginAfterQuirk : 1;
     unsigned m_beingDestroyed : 1;
     unsigned m_hasMarkupTruncation : 1;
     unsigned m_hasBorderOrPaddingLogicalWidthChanged : 1;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to