Changeset 109220 in webkit


Ignore:
Timestamp:
Feb 29, 2012 9:07:00 AM (12 years ago)
Author:
bashi@chromium.org
Message:

Align InlineBox::m_expansion to a byte boundary
https://bugs.webkit.org/show_bug.cgi?id=79761

Add a bit to m_expansion to align a byte boundary.
This will make valgrind memcheck happy.
I confirmed sizeof(InlineBox) is unchanged.

Reviewed by Hajime Morita.

No new tests. No behavior changes.

  • rendering/InlineBox.h:

(InlineBox): Aligned m_expansion to a byte boundary.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r109219 r109220  
     12012-02-29  Kenichi Ishibashi  <bashi@chromium.org>
     2
     3        Align InlineBox::m_expansion to a byte boundary
     4        https://bugs.webkit.org/show_bug.cgi?id=79761
     5
     6        Add a bit to m_expansion to align a byte boundary.
     7        This will make valgrind memcheck happy.
     8        I confirmed sizeof(InlineBox) is unchanged.
     9
     10        Reviewed by Hajime Morita.
     11
     12        No new tests. No behavior changes.
     13
     14        * rendering/InlineBox.h:
     15        (InlineBox): Aligned m_expansion to a byte boundary.
     16
    1172012-02-28  Kenneth Rohde Christiansen  <kenneth@webkit.org>
    218
  • trunk/Source/WebCore/rendering/InlineBox.h

    r103243 r109220  
    359359    mutable bool m_determinedIfNextOnLineExists : 1;
    360360    mutable bool m_nextOnLineExists : 1;
    361     signed m_expansion : 11; // for justified text
     361    signed m_expansion : 12; // for justified text
    362362
    363363#ifndef NDEBUG
Note: See TracChangeset for help on using the changeset viewer.