remove warning comparison between enum CGAL::Halfedge_direction and enum CGAL::Sign

This commit is contained in:
Shlomo Golubev 2007-09-05 16:04:05 +00:00
parent 773f67dc7a
commit 43f8cff92a
1 changed files with 2 additions and 2 deletions

View File

@ -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));