Make some use of CGAL_AND.
This commit is contained in:
@@ -3426,7 +3426,7 @@ namespace CartesianKernelFunctors {
|
||||
result_type
|
||||
operator()( const Point_3& p, const Point_3& q) const
|
||||
{
|
||||
return p.x() == q.x() && p.y() == q.y();
|
||||
return CGAL_AND( p.x() == q.x() , p.y() == q.y() );
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user