From d7720073e2ac04972ae9c56785c29d8f219de13d Mon Sep 17 00:00:00 2001 From: Guillaume Damiand Date: Thu, 14 Dec 2023 08:24:09 +0100 Subject: [PATCH] Remove a wrong const --- Boolean_set_operations_2/include/CGAL/draw_polygon_set_2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Boolean_set_operations_2/include/CGAL/draw_polygon_set_2.h b/Boolean_set_operations_2/include/CGAL/draw_polygon_set_2.h index 2164082adba..ab197fe02ff 100644 --- a/Boolean_set_operations_2/include/CGAL/draw_polygon_set_2.h +++ b/Boolean_set_operations_2/include/CGAL/draw_polygon_set_2.h @@ -38,7 +38,7 @@ struct Graphics_scene_options_polygon_set_2 : bool draw_unbounded() const { return m_draw_unbounded; } - void draw_unbounded(bool b) const + void draw_unbounded(bool b) { m_draw_unbounded=b; } void toggle_draw_unbounded() { m_draw_unbounded=!m_draw_unbounded; }