No longer #if 0

This commit is contained in:
Andreas Fabri 2025-10-17 10:43:33 +01:00
parent 3706528a0c
commit da011b2abe
1 changed files with 2 additions and 2 deletions

View File

@ -929,13 +929,13 @@ bool read_PLY(std::istream& is,
/// \cond SKIP_IN_MANUAL /// \cond SKIP_IN_MANUAL
#if 0 #ifndef CGAL_NO_DEPRECATED_CODE
// for backward compatibility // for backward compatibility
template <typename P> template <typename P>
bool read_PLY(std::istream& is, bool read_PLY(std::istream& is,
Surface_mesh<P>& sm, Surface_mesh<P>& sm,
std::string& comments, std::string& comments,
bool verbose = true) bool verbose)
{ {
return read_PLY(is, sm, comments, CGAL::parameters::verbose(verbose)); return read_PLY(is, sm, comments, CGAL::parameters::verbose(verbose));
} }