mirror of https://github.com/CGAL/cgal
remove warning comparison between enum CGAL::Halfedge_direction and enum CGAL::Sign
This commit is contained in:
parent
773f67dc7a
commit
43f8cff92a
|
|
@ -185,8 +185,8 @@ Object Arr_trapezoid_ric_point_location<Arrangement>
|
|||
break;
|
||||
|
||||
case TD::CURVE:
|
||||
if ((shoot_up && h->direction() == SMALLER) ||
|
||||
(!shoot_up && h->direction() == LARGER))
|
||||
if ((shoot_up && h->direction() == LEFT_TO_RIGHT) ||
|
||||
(!shoot_up && h->direction() == RIGHT_TO_LEFT))
|
||||
h=h->twin();
|
||||
|
||||
return (CGAL::make_object(h));
|
||||
|
|
|
|||
Loading…
Reference in New Issue