Changeset 123913 in webkit


Ignore:
Timestamp:
Jul 27, 2012, 1:41:40 PM (13 years ago)
Author:
mitz@apple.com
Message:

Fix COMPILE_ASSERT for InlineFlowBox growing
https://bugs.webkit.org/show_bug.cgi?id=92541

Patch by Scott Graham <scottmg@chromium.org> on 2012-07-27
Reviewed by Dan Bernstein.

Use unsigned instead of bool to keep size small on Windows.

No new tests.

  • rendering/InlineFlowBox.h:

(InlineFlowBox):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r123912 r123913  
     12012-07-27  Scott Graham  <scottmg@chromium.org>
     2
     3        Fix COMPILE_ASSERT for InlineFlowBox growing
     4        https://bugs.webkit.org/show_bug.cgi?id=92541
     5
     6        Reviewed by Dan Bernstein.
     7
     8        Use unsigned instead of bool to keep size small on Windows.
     9
     10        No new tests.
     11
     12        * rendering/InlineFlowBox.h:
     13        (InlineFlowBox):
     14
    1152012-07-27  Beth Dakin  <bdakin@apple.com>
    216
  • trunk/Source/WebCore/rendering/InlineFlowBox.h

    r123904 r123913  
    323323    unsigned m_hasAnnotationsBefore : 1;
    324324    unsigned m_hasAnnotationsAfter : 1;
    325     bool m_isFirstAfterPageBreak : 1;
     325    unsigned m_isFirstAfterPageBreak : 1;
    326326
    327327    unsigned m_lineBreakBidiStatusEor : 5; // WTF::Unicode::Direction
Note: See TracChangeset for help on using the changeset viewer.