@@ -71,10 +71,10 @@ class Point {
7171 T y () const ;
7272
7373 // /@brief == operator
74- friend bool operator ==<>(Point<T> lhs, Point<T> rhs);
74+ friend bool operator == <>(Point<T> lhs, Point<T> rhs);
7575
7676 // /@brief != operator
77- friend bool operator !=<>(Point<T> lhs, Point<T> rhs);
77+ friend bool operator != <>(Point<T> lhs, Point<T> rhs);
7878
7979 // /@brief < operator
8080 friend bool operator < <>(Point<T> lhs, Point<T> rhs);
@@ -172,10 +172,10 @@ class Rect {
172172 bool empty () const ;
173173
174174 // /@brief == operator
175- friend bool operator ==<>(const Rect<T>& lhs, const Rect<T>& rhs);
175+ friend bool operator == <>(const Rect<T>& lhs, const Rect<T>& rhs);
176176
177177 // /@brief != operator
178- friend bool operator !=<>(const Rect<T>& lhs, const Rect<T>& rhs);
178+ friend bool operator != <>(const Rect<T>& lhs, const Rect<T>& rhs);
179179
180180 public: // Mutators
181181 // /@brief set xmin to a point
@@ -296,10 +296,10 @@ class RectUnion {
296296 *
297297 * Note: does not check whether the representations they are equivalent
298298 */
299- friend bool operator ==<>(const RectUnion<T>& lhs, const RectUnion<T>& rhs);
299+ friend bool operator == <>(const RectUnion<T>& lhs, const RectUnion<T>& rhs);
300300
301301 // /@brief != operator
302- friend bool operator !=<>(const RectUnion<T>& lhs, const RectUnion<T>& rhs);
302+ friend bool operator != <>(const RectUnion<T>& lhs, const RectUnion<T>& rhs);
303303
304304 private:
305305 // Note that a union of rectanges may have holes and may not be contiguous
0 commit comments