diff --git a/src/Point.h b/src/Point.h index a07fcc7..f171107 100644 --- a/src/Point.h +++ b/src/Point.h @@ -8,5 +8,5 @@ struct Point inline bool operator==(const Point& lhs, const Point& rhs) { - return lhs.x == rhs.x and lhs.y == rhs.y; + return lhs.x == rhs.x && lhs.y == rhs.y; }