Write "operator()" instead of "operator ()", "operator&" instead of "operator &"...
[synfig.git] / synfig-core / trunk / src / synfig / layer_shape.cpp
index 539d715..e8f13a5 100644 (file)
@@ -947,7 +947,7 @@ struct PenMark
        void setcover(Real c, Real a)                           { cover = c; area = a; }
        void addcover(Real c, Real a)                           { cover += c; area += a; }
 
-       bool operator < (const PenMark &rhs) const
+       bool operator<(const PenMark &rhs) const
        {
                return y == rhs.y ? x < rhs.x : y < rhs.y;
        }