diff --git a/Polygon_repair/include/CGAL/Polygon_repair/Polygon_repair.h b/Polygon_repair/include/CGAL/Polygon_repair/Polygon_repair.h index 4e12f0b11f0..cdeda55d487 100644 --- a/Polygon_repair/include/CGAL/Polygon_repair/Polygon_repair.h +++ b/Polygon_repair/include/CGAL/Polygon_repair/Polygon_repair.h @@ -33,12 +33,12 @@ class Polygon_repair; #endif /// \ingroup PkgPolygonRepairFunctions -/// repairs a polygon without holes using the given rule +/// repairs polygon `p` using the given rule /// \tparam Kernel parameter of the input and output polygons /// \tparam Container parameter of the input and output polygons /// \tparam Rule must be `Even_odd_rule` template -Multipolygon_with_holes_2 repair(const Polygon_2& , Rule rule) { +Multipolygon_with_holes_2 repair(const Polygon_2& p , Rule rule) { CGAL_assertion(false); // rule not implemented return Multipolygon_with_holes_2(); } @@ -54,7 +54,7 @@ Multipolygon_with_holes_2 repair(const Polygon_2 repair(const Polygon_with_holes_2 -Multipolygon_with_holes_2 repair(const Multipolygon_with_holes_2& mp, Rule rule) { +Multipolygon_with_holes_2 repair(const Multipolygon_with_holes_2& p, Rule rule) { CGAL_assertion(false); // rule not implemented return Multipolygon_with_holes_2(); }