Merge pull request #8301 from soesau/Shape_detection-Deprecated_traits-GF

Shape_detection: Removing leftover from deprecated Shape_detection_traits
This commit is contained in:
Sébastien Loriot 2024-07-23 17:17:01 +02:00
commit 31c82ba197
1 changed files with 0 additions and 8 deletions

View File

@ -31,11 +31,6 @@
namespace CGAL { namespace CGAL {
namespace Shape_detection { 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 { namespace internal {
template <typename Traits> template <typename Traits>
@ -43,9 +38,6 @@ struct Traits_base { typedef Traits type; };
template <typename Gt, typename IR, typename IPM, typename INM> template <typename Gt, typename IR, typename IPM, typename INM>
struct Traits_base<CGAL::Shape_detection::Efficient_RANSAC_traits<Gt,IR,IPM,INM> > struct Traits_base<CGAL::Shape_detection::Efficient_RANSAC_traits<Gt,IR,IPM,INM> >
{ typedef Gt type; }; { 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> template<class Traits>
class RANSAC_octree { class RANSAC_octree {