mirror of https://github.com/CGAL/cgal
adding default value for template parameter in Point_set_3 forward declaration
This commit is contained in:
parent
ae1a157c64
commit
765a9d0939
|
|
@ -44,7 +44,7 @@
|
||||||
namespace CGAL {
|
namespace CGAL {
|
||||||
|
|
||||||
// Forward declaration for normal check
|
// 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;
|
class Point_set_3;
|
||||||
|
|
||||||
namespace Shape_detection {
|
namespace Shape_detection {
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@
|
||||||
namespace CGAL {
|
namespace CGAL {
|
||||||
|
|
||||||
// Forward declaration for normal check
|
// 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;
|
class Point_set_3;
|
||||||
|
|
||||||
namespace Shape_detection {
|
namespace Shape_detection {
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@
|
||||||
namespace CGAL {
|
namespace CGAL {
|
||||||
|
|
||||||
// Forward declaration for normal check
|
// 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;
|
class Point_set_3;
|
||||||
|
|
||||||
namespace Shape_detection {
|
namespace Shape_detection {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue