You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The != operator for Point class should be:
inline bool operator !=(const Point& a, const Point& b)
{
return !(a.x == b.x) || !(a.y == b.y);
}
Note the use of ||.
Original issue reported on code.google.com by ckohn...@gmail.com on 11 Jul 2013 at 1:09
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
ckohn...@gmail.com
on 11 Jul 2013 at 1:09The text was updated successfully, but these errors were encountered: