Remove an unused parameter in draw functions for polygons.

This commit is contained in:
Guillaume Damiand 2019-06-25 09:23:41 +02:00
parent 64a8bd2a13
commit 11da3c11a1
2 changed files with 2 additions and 4 deletions

View File

@ -103,8 +103,7 @@ protected:
// Specialization of draw function.
template<class T, class C>
void draw(const CGAL::Polygon_2<T, C>& 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;

View File

@ -120,8 +120,7 @@ protected:
// Specialization of draw function.
template<class T, class C>
void draw(const CGAL::Polygon_with_holes_2<T, C>& 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;