From 5298ff114e07b5812fdfdcf3c6ee49338cfb61d5 Mon Sep 17 00:00:00 2001 From: Efi Fogel Date: Thu, 2 Jul 2020 19:10:29 +0300 Subject: [PATCH] Cleaned up --- .../include/CGAL/Arr_line_arc_traits_2.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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; } };