Remove a wrong const

This commit is contained in:
Guillaume Damiand 2023-12-14 08:24:09 +01:00
parent dcac571d99
commit d7720073e2
1 changed files with 1 additions and 1 deletions

View File

@ -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; }