Removing leftover from deprecated Shape_detection_traits

This commit is contained in:
Sven Oesau 2024-06-21 11:34:57 +02:00
parent dfa981a844
commit e84a054cd8
1 changed files with 0 additions and 8 deletions

View File

@ -31,11 +31,6 @@
namespace CGAL {
namespace Shape_detection {
// Forward declaration needed for automatic traits detection without
// including the deprecated header itself…
template <typename Gt, typename IR, typename IPM, typename INM>
struct Shape_detection_traits;
namespace internal {
template <typename Traits>
@ -43,9 +38,6 @@ struct Traits_base { typedef Traits type; };
template <typename Gt, typename IR, typename IPM, typename INM>
struct Traits_base<CGAL::Shape_detection::Efficient_RANSAC_traits<Gt,IR,IPM,INM> >
{ typedef Gt type; };
template <typename Gt, typename IR, typename IPM, typename INM>
struct Traits_base<CGAL::Shape_detection::Shape_detection_traits<Gt,IR,IPM,INM> >
{ typedef Gt type; };
template<class Traits>
class RANSAC_octree {