mirror of https://github.com/CGAL/cgal
Remove an unused parameter in draw functions for polygons.
This commit is contained in:
parent
64a8bd2a13
commit
11da3c11a1
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue