Make some use of CGAL_AND.

This commit is contained in:
Sylvain Pion
2008-08-12 11:55:24 +00:00
parent 869f4ceae1
commit 5c5f891fa5
3 changed files with 15 additions and 15 deletions
@@ -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() );
}
};