From a2ae7d8e13596d4270242775c5d64e8836cb029b Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Wed, 10 Nov 2021 08:22:46 +0000 Subject: [PATCH] Addess -Wdeprecated-anon-enum-enum-conversion --- .../include/CGAL/Arr_geometry_traits/Conic_x_monotone_arc_2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Arrangement_on_surface_2/include/CGAL/Arr_geometry_traits/Conic_x_monotone_arc_2.h b/Arrangement_on_surface_2/include/CGAL/Arr_geometry_traits/Conic_x_monotone_arc_2.h index 761e38b1693..ec70376642b 100644 --- a/Arrangement_on_surface_2/include/CGAL/Arr_geometry_traits/Conic_x_monotone_arc_2.h +++ b/Arrangement_on_surface_2/include/CGAL/Arr_geometry_traits/Conic_x_monotone_arc_2.h @@ -202,7 +202,7 @@ public: // Invalid arc: if (dir_res == EQUAL) return; - this->_info = (Conic_arc_2::IS_VALID | DEGREE_1); + this->_info = (static_cast(Conic_arc_2::IS_VALID) | static_cast(DEGREE_1)); if (dir_res == SMALLER) this->_info = (this->_info | IS_DIRECTED_RIGHT);