Changeset 123913 in webkit
- Timestamp:
- Jul 27, 2012, 1:41:40 PM (13 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r123912 r123913 1 2012-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 1 15 2012-07-27 Beth Dakin <bdakin@apple.com> 2 16 -
trunk/Source/WebCore/rendering/InlineFlowBox.h
r123904 r123913 323 323 unsigned m_hasAnnotationsBefore : 1; 324 324 unsigned m_hasAnnotationsAfter : 1; 325 boolm_isFirstAfterPageBreak : 1;325 unsigned m_isFirstAfterPageBreak : 1; 326 326 327 327 unsigned m_lineBreakBidiStatusEor : 5; // WTF::Unicode::Direction
Note:
See TracChangeset
for help on using the changeset viewer.