changed inequality

This commit is contained in:
Mason Green 2013-05-01 21:40:42 -04:00 committed by Jan Niklas Hasse
parent d5b79b043b
commit e662a5c446
1 changed files with 1 additions and 1 deletions

View File

@ -254,7 +254,7 @@ inline bool operator ==(const Point& a, const Point& b)
inline bool operator !=(const Point& a, const Point& b)
{
return !(a == b);
return !(a.x == b.x) && !(a.y == b.y);
}
/// Peform the dot product on two vectors.