fix doxygen warning

This commit is contained in:
Andreas Fabri 2025-09-30 08:13:22 +01:00
parent 33bd58bbef
commit 89ba13f977
2 changed files with 6 additions and 3 deletions

View File

@ -174,7 +174,7 @@ bool read_PLY(std::istream& is,
\param fname the name of the input file
\param g the graph to be built from the input data
\param comments a string included line by line in the header of the PLY stream (each line will be precedeed by "comment
\param comments a string included line by line in the header of the PLY stream (each line will be precedeed by "comment" )
\param np optional \ref bgl_namedparameters "Named Parameters" described below
\cgalNamedParamsBegin

View File

@ -821,8 +821,11 @@ void fill_header(std::ostream& os, const Surface_mesh<Point>& sm,
template <typename P, typename CGAL_NP_TEMPLATE_PARAMETERS>
bool read_PLY(std::istream& is,
Surface_mesh<P>& sm,
std::string& comments,
const CGAL_NP_CLASS& np = parameters::default_values())
std::string& comments
#ifndef DOXYGEN_RUNNING
, const CGAL_NP_CLASS& np = parameters::default_values()
#endif
)
{
typedef typename Surface_mesh<P>::size_type size_type;