Index: Source/core/svg/SVGBoolean.h |
diff --git a/Source/core/svg/SVGBoolean.h b/Source/core/svg/SVGBoolean.h |
index b52227e9d986a99ae5cb3baa0ba26f05fae674dd..8d1f7856d585ec19503d459cf8e097bf2d73b91d 100644 |
--- a/Source/core/svg/SVGBoolean.h |
+++ b/Source/core/svg/SVGBoolean.h |
@@ -55,9 +55,6 @@ public: |
virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> from, PassRefPtr<SVGPropertyBase> to, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) OVERRIDE; |
virtual float calculateDistance(PassRefPtr<SVGPropertyBase> to, SVGElement*) OVERRIDE; |
- bool operator==(const SVGBoolean& other) const { return m_value == other.m_value; } |
- bool operator!=(const SVGBoolean& other) const { return !operator==(other); } |
- |
bool value() const { return m_value; } |
void setValue(bool value) { m_value = value; } |