rolling back + operator overload for scalars ( Not approved by FD )

release/4.3a0
Manohar Paluri 2009-09-13 03:43:15 +00:00
parent bc93a9c314
commit d141cdab8c
1 changed files with 0 additions and 1 deletions

View File

@ -48,7 +48,6 @@ namespace gtsam {
/** operators */
inline bool operator ==(const Point2& q) const {return x_==q.x_ && q.y_==q.y_;}
inline Point2 operator + (const Point2& q) const {return Point2(x_+q.x_,y_+q.y_);}
inline Point2 operator + (double value) const {return Point2(x_+value,y_+value);}
inline Point2 operator - (const Point2& q) const {return Point2(x_-q.x_,y_-q.y_);}
inline Point2 operator / (double q) const {return Point2(x_/q,y_/q);}