diff --git a/Packages/Intersections_2/test/Intersections_2/tst05.C b/Packages/Intersections_2/test/Intersections_2/tst05.C index 70c92a87486..32b23713eef 100644 --- a/Packages/Intersections_2/test/Intersections_2/tst05.C +++ b/Packages/Intersections_2/test/Intersections_2/tst05.C @@ -48,7 +48,7 @@ void treat_intersection(const segment_t &seg1, const segment_t &seg2) point_t pt1; segment_t iseg; bool is; - is = do_intersect(seg1,seg2); + is = CGAL::do_intersect(seg1,seg2); CGAL::Object result = CGAL::intersection(seg1, seg2); if (!CGAL::assign(iseg, result) && !CGAL::assign(pt1, result)) { std::cout << "No intersection.\n";