diff --git a/Arrangement_on_surface_2/include/CGAL/Arr_line_arc_traits_2.h b/Arrangement_on_surface_2/include/CGAL/Arr_line_arc_traits_2.h index c82c968fcb1..20ccbe9c758 100644 --- a/Arrangement_on_surface_2/include/CGAL/Arr_line_arc_traits_2.h +++ b/Arrangement_on_surface_2/include/CGAL/Arr_line_arc_traits_2.h @@ -125,9 +125,8 @@ public: template OutputIterator operator()(const Curve_2& line, OutputIterator oi) const { - typedef boost::variant - Make_x_monotone_2_result; - *oi++ = Make_x_monotone_2_result(line); + typedef boost::variant Make_x_monotone_result; + *oi++ = Make_x_monotone_result(line); return oi; } };