Index: Source/core/svg/SVGTransform.h |
diff --git a/Source/core/svg/SVGTransform.h b/Source/core/svg/SVGTransform.h |
index 146a38646c97d71d976041b7407c88a41bb7480c..f2d8896154fad7baf19db4f2b07dbdceff243d94 100644 |
--- a/Source/core/svg/SVGTransform.h |
+++ b/Source/core/svg/SVGTransform.h |
@@ -106,24 +106,12 @@ private: |
explicit SVGTransform(const AffineTransform&); |
SVGTransform(SVGTransformType, float, const FloatPoint&, const AffineTransform&); |
- friend bool operator==(const SVGTransform& a, const SVGTransform& b); |
- |
SVGTransformType m_transformType; |
float m_angle; |
FloatPoint m_center; |
AffineTransform m_matrix; |
}; |
-inline bool operator==(const SVGTransform& a, const SVGTransform& b) |
-{ |
- return a.m_transformType == b.m_transformType && a.m_angle == b.m_angle && a.m_matrix == b.m_matrix; |
-} |
- |
-inline bool operator!=(const SVGTransform& a, const SVGTransform& b) |
-{ |
- return !(a == b); |
-} |
- |
} // namespace blink |
#endif |