adding default value for template parameter in Point_set_3 forward declaration

This commit is contained in:
Sven Oesau 2025-04-02 09:14:29 +02:00
parent ae1a157c64
commit 765a9d0939
3 changed files with 3 additions and 3 deletions

View File

@ -44,7 +44,7 @@
namespace CGAL {
// Forward declaration for normal check
template<typename Point_3, typename Vector_3>
template<typename Point_3, typename Vector_3 = typename Kernel_traits<Point_3>::Kernel::Vector_3>
class Point_set_3;
namespace Shape_detection {

View File

@ -23,7 +23,7 @@
namespace CGAL {
// Forward declaration for normal check
template<typename Point_3, typename Vector_3>
template<typename Point_3, typename Vector_3 = typename Kernel_traits<Point_3>::Kernel::Vector_3>
class Point_set_3;
namespace Shape_detection {

View File

@ -23,7 +23,7 @@
namespace CGAL {
// Forward declaration for normal check
template<typename Point_3, typename Vector_3>
template<typename Point_3, typename Vector_3 = typename Kernel_traits<Point_3>::Kernel::Vector_3>
class Point_set_3;
namespace Shape_detection {