Changeset 210020 in webkit


Ignore:
Timestamp:
Dec 20, 2016 3:42:20 AM (7 years ago)
Author:
Yusuke Suzuki
Message:

Unreviewed, attempt to fix Windows Debug build part 2
https://bugs.webkit.org/show_bug.cgi?id=166035

Ensured that this patch passes the build on the GTK port.

  • rendering/RenderElement.cpp:
  • rendering/RenderElement.h:
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r210018 r210020  
     12016-12-20  Yusuke Suzuki  <utatane.tea@gmail.com>
     2
     3        Unreviewed, attempt to fix Windows Debug build part 2
     4        https://bugs.webkit.org/show_bug.cgi?id=166035
     5
     6        Ensured that this patch passes the build on the GTK port.
     7
     8        * rendering/RenderElement.cpp:
     9        * rendering/RenderElement.h:
     10
    1112016-12-20  Yusuke Suzuki  <utatane.tea@gmail.com>
    212
  • trunk/Source/WebCore/rendering/RenderElement.cpp

    r210018 r210020  
    8484
    8585struct SameSizeAsRenderElement : public RenderObject {
    86 #if !ASSERT_DISABLED
    87     bool reparentingChild;
    88 #endif
    8986    uint8_t bitfields0;
    9087    uint8_t bitfields1;
     
    9390    void* lastChild;
    9491    RenderStyle style;
     92#if !ASSERT_DISABLED
     93    bool reparentingChild;
     94#endif
    9595};
    9696
  • trunk/Source/WebCore/rendering/RenderElement.h

    r210001 r210020  
    274274    void removeFromRenderFlowThreadIncludingDescendants(bool shouldUpdateState);
    275275    void adjustFlowThreadStateOnContainingBlockChangeIfNeeded();
    276 #if !ASSERT_DISABLED
    277     bool m_reparentingChild { false };
    278 #endif
    279276
    280277private:
     
    343340    static bool s_affectsParentBlock;
    344341    static bool s_noLongerAffectsParentBlock;
     342
     343protected:
     344#if !ASSERT_DISABLED
     345    bool m_reparentingChild { false };
     346#endif
    345347};
    346348
Note: See TracChangeset for help on using the changeset viewer.