Ignore:
Timestamp:
Feb 11, 2013, 7:44:27 AM (13 years ago)
Author:
[email protected]
Message:

[QT] Regression (r142444): Broke qt linux minimal build
https://bugs.webkit.org/show_bug.cgi?id=109423

Patch by Alexander Shalamov <[email protected]> on 2013-02-11
Reviewed by Kenneth Rohde Christiansen.

Test: cssom/cssvalue-comparison.html

  • css/CSSValue.cpp:

(WebCore::CSSValue::equals):

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/css/CSSValue.cpp

    r142457 r142472  
    370370            return compareCSSValues<WebKitCSSSVGDocumentValue>(*this, other);
    371371#endif
     372        default:
     373            ASSERT_NOT_REACHED();
     374            return false;
    372375        }
    373         ASSERT_NOT_REACHED();
    374376    } else if (m_classType == ValueListClass && other.m_classType != ValueListClass)
    375377        return static_cast<const CSSValueList*>(this)->equals(other);
Note: See TracChangeset for help on using the changeset viewer.