From 4a170e9ec0ec9b36be1e381de2754e7c5ed142fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Mon, 28 Feb 2022 10:03:20 +0100 Subject: [PATCH] default NP for non inlined doc --- Convex_hull_3/doc/Convex_hull_3/CGAL/convex_hull_3.h | 4 ++-- .../CGAL/Surface_mesh_simplification/edge_collapse.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Convex_hull_3/doc/Convex_hull_3/CGAL/convex_hull_3.h b/Convex_hull_3/doc/Convex_hull_3/CGAL/convex_hull_3.h index 5581b488b54..eab79fb6945 100644 --- a/Convex_hull_3/doc/Convex_hull_3/CGAL/convex_hull_3.h +++ b/Convex_hull_3/doc/Convex_hull_3/CGAL/convex_hull_3.h @@ -63,10 +63,10 @@ void convex_hull_3(InputIterator first, InputIterator last, PolygonMesh& pm, con * \cgalNamedParamsEnd * \attention The user must include the header file of the `PolygonMesh` and `VertexListGraph` types. */ -template +template void convex_hull_3(const VertexListGraph& g, PolygonMesh& pm, - const NamedParameters& np); + const NamedParameters& np = parameters::default_values()); /*! \ingroup PkgConvexHull3Functions diff --git a/Surface_mesh_simplification/doc/Surface_mesh_simplification/CGAL/Surface_mesh_simplification/edge_collapse.h b/Surface_mesh_simplification/doc/Surface_mesh_simplification/CGAL/Surface_mesh_simplification/edge_collapse.h index 16f9d7804e9..bb0ed1c8ea6 100644 --- a/Surface_mesh_simplification/doc/Surface_mesh_simplification/CGAL/Surface_mesh_simplification/edge_collapse.h +++ b/Surface_mesh_simplification/doc/Surface_mesh_simplification/CGAL/Surface_mesh_simplification/edge_collapse.h @@ -110,10 +110,10 @@ and the remaining vertex is re-positioned. `visitor` is used to keep track of the simplification process. It has several member functions which are called at certain points in the simplification code. */ -template +template int edge_collapse(TriangleMesh& tmesh, const StopPolicy& should_stop, - const NamedParameters& np); + const NamedParameters& np = parameters::default_values()); } // namespace Surface_mesh_simplification } /* namespace CGAL */