Use CGAL_NP_TEMPLATE_PARAMETERS_NO_DEFAULT

This commit is contained in:
Andreas Fabri 2025-10-25 11:00:50 +01:00
parent 5e26465b2c
commit f766834601
2 changed files with 4 additions and 4 deletions

View File

@ -43,7 +43,7 @@ namespace IO {
// doxygen in ../OFF.h
template <typename OutputIteratorValueType,
typename PointOutputIterator,
typename CGAL_NP_TEMPLATE_PARAMETERS>
typename CGAL_NP_TEMPLATE_PARAMETERS_NO_DEFAULT>
bool read_OFF(std::istream& is,
PointOutputIterator output,
const CGAL_NP_CLASS& np,
@ -162,7 +162,7 @@ bool read_OFF(std::istream& is,
// doxygen in ../OFF.h
template <typename OutputIteratorValueType,
typename PointOutputIterator,
typename CGAL_NP_TEMPLATE_PARAMETERS>
typename CGAL_NP_TEMPLATE_PARAMETERS_NO_DEFAULT>
bool read_OFF(const std::string& fname,
PointOutputIterator output,
const CGAL_NP_CLASS& np,

View File

@ -89,7 +89,7 @@ bool write_OFF_PSP(std::ostream& os,
namespace IO {
// // doxygen in ../OFF.h
template <typename PointRange, typename CGAL_NP_TEMPLATE_PARAMETERS>
template <typename PointRange, typename CGAL_NP_TEMPLATE_PARAMETERS_NO_DEFAULT>
bool write_OFF(std::ostream& os,
const PointRange& points,
const CGAL_NP_CLASS& np,
@ -101,7 +101,7 @@ bool write_OFF(std::ostream& os,
// // doxygen in ../OFF.h
template <typename PointRange,
typename CGAL_NP_TEMPLATE_PARAMETERS>
typename CGAL_NP_TEMPLATE_PARAMETERS_NO_DEFAULT>
bool write_OFF(const std::string& filename,
const PointRange& points,
const CGAL_NP_CLASS& np, std::enable_if_t<internal::is_Range<PointRange>::value>*