aboutsummaryrefslogtreecommitdiffstats
path: root/tests/libsample/point.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/libsample/point.cpp')
-rw-r--r--tests/libsample/point.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/libsample/point.cpp b/tests/libsample/point.cpp
index 0b6540202..4c527b3a0 100644
--- a/tests/libsample/point.cpp
+++ b/tests/libsample/point.cpp
@@ -86,6 +86,12 @@ Point::operator+=(Point &other)
return *this;
}
+bool
+Point::operator!=(const Point &other)
+{
+ return (m_x != other.m_x) || (m_y != other.m_y);
+}
+
Point&
Point::operator-=(Point &other)
{