Changeset 241775 in webkit


Ignore:
Timestamp:
Feb 19, 2019 2:36:50 PM (5 years ago)
Author:
Alan Bujtas
Message:

Fix post-commit feedback.

Unreviewed.

  • layout/floats/FloatingContext.cpp:

(WebCore::Layout::FloatingPair::intersects const):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r241774 r241775  
     12019-02-19  Zalan Bujtas  <zalan@apple.com>
     2
     3        Fix post-commit feedback.
     4
     5        Unreviewed.
     6
     7        * layout/floats/FloatingContext.cpp:
     8        (WebCore::Layout::FloatingPair::intersects const):
     9
    1102019-02-19  Zalan Bujtas  <zalan@apple.com>
    211
  • trunk/Source/WebCore/layout/floats/FloatingContext.cpp

    r241774 r241775  
    323323{
    324324    auto intersects = [&](auto* floating) {
    325         return floating ? floating->rectWithMargin().intersects(floatAvoiderRect) : false;
     325        return floating && floating->rectWithMargin().intersects(floatAvoiderRect);
    326326    };
    327327
Note: See TracChangeset for help on using the changeset viewer.