Changeset 143549 in webkit


Ignore:
Timestamp:
Feb 20, 2013, 6:24:46 PM (12 years ago)
Author:
ojan@chromium.org
Message:

Speculative fix for EFL and Windows compilers not realizing
that all possible cases have a return value from this switch.

  • rendering/RenderBox.cpp:

(WebCore::RenderBox::computeReplacedLogicalWidthUsing):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r143546 r143549  
     12013-02-20  Ojan Vafai  <ojan@chromium.org>
     2
     3        Speculative fix for EFL and Windows compilers not realizing
     4        that all possible cases have a return value from this switch.
     5
     6        * rendering/RenderBox.cpp:
     7        (WebCore::RenderBox::computeReplacedLogicalWidthUsing):
     8
    192013-02-20  David Hyatt  <hyatt@apple.com>
    210
  • trunk/Source/WebCore/rendering/RenderBox.cpp

    r143546 r143549  
    26232623        case Undefined:
    26242624            return intrinsicLogicalWidth();
    2625      }
     2625    }
     2626
     2627    ASSERT_NOT_REACHED();
     2628    return 0;
    26262629}
    26272630
Note: See TracChangeset for help on using the changeset viewer.