On /library/include/CoordTemplate.h there is == operators when should be !=
Line 43:
bool operator!=(const Coord2d& other) const
{
return x != other.x || y == other.y;
}
and line 150:
bool operator!=(const Coord3d& other) const
{
return x != other.x || y == other.y || z == other.z;
}
On
/library/include/CoordTemplate.hthere is==operators when should be!=Line 43:
and line 150: