From 11da3c11a133981b64e313c737ba952fb8fdeffc Mon Sep 17 00:00:00 2001 From: Guillaume Damiand Date: Tue, 25 Jun 2019 09:23:41 +0200 Subject: [PATCH] Remove an unused parameter in draw functions for polygons. --- Polygon/include/CGAL/draw_polygon_2.h | 3 +-- Polygon/include/CGAL/draw_polygon_with_holes_2.h | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Polygon/include/CGAL/draw_polygon_2.h b/Polygon/include/CGAL/draw_polygon_2.h index 0088deefd58..349a213c380 100644 --- a/Polygon/include/CGAL/draw_polygon_2.h +++ b/Polygon/include/CGAL/draw_polygon_2.h @@ -103,8 +103,7 @@ protected: // Specialization of draw function. template void draw(const CGAL::Polygon_2& ap2, - const char* title="Polygon_2 Basic Viewer", - bool nofill=false) + const char* title="Polygon_2 Basic Viewer") { #if defined(CGAL_TEST_SUITE) bool cgal_test_suite=true; diff --git a/Polygon/include/CGAL/draw_polygon_with_holes_2.h b/Polygon/include/CGAL/draw_polygon_with_holes_2.h index 026ab1dee54..4b4c1bfd93f 100644 --- a/Polygon/include/CGAL/draw_polygon_with_holes_2.h +++ b/Polygon/include/CGAL/draw_polygon_with_holes_2.h @@ -120,8 +120,7 @@ protected: // Specialization of draw function. template void draw(const CGAL::Polygon_with_holes_2& ap2, - const char* title="Polygon_with_holes_2 Basic Viewer", - bool nofill=false) + const char* title="Polygon_with_holes_2 Basic Viewer") { #if defined(CGAL_TEST_SUITE) bool cgal_test_suite=true;