diff --git a/Intersections_3/include/CGAL/Intersection_traits_3.h b/Intersections_3/include/CGAL/Intersection_traits_3.h index d632d7a885d..c79755b497c 100644 --- a/Intersections_3/include/CGAL/Intersection_traits_3.h +++ b/Intersections_3/include/CGAL/Intersection_traits_3.h @@ -115,20 +115,6 @@ template struct Intersection_traits : public Intersection_traits {}; -template -inline -typename K::Intersect_3::template Result -intersection(const CGAL::Bbox_3& a, typename K::Line_3 const& b) { - return K().intersect_3_object()(a, b); -} - -template -inline -typename K::Intersect_3::template Result -intersection(typename K::Line_3 const& b, const CGAL::Bbox_3& a) { - return K().intersect_3_object()(b, a); -} - // Bbox_3 Segment_3 template struct Intersection_traits : @@ -138,20 +124,6 @@ template struct Intersection_traits : public Intersection_traits {}; -template -inline -typename K::Intersect_3::template Result -intersection(typename K::Segment_3 const& b, const CGAL::Bbox_3& a) { - return K().intersect_3_object()(b, a); -} - -template -inline -typename K::Intersect_3::template Result -intersection(typename CGAL::Bbox_3 const& b, typename K::Segment_3 const& a) { - return K().intersect_3_object()(b, a); -} - // Bbox_3 Ray_3 template struct Intersection_traits : @@ -161,20 +133,6 @@ template struct Intersection_traits : public Intersection_traits {}; -template -inline -typename K::Intersect_3::template Result -intersection(typename K::Ray_3 const& b, const CGAL::Bbox_3& a) { - return K().intersect_3_object()(b, a); -} - -template -inline -typename K::Intersect_3::template Result -intersection(const CGAL::Bbox_3& a, typename K::Ray_3 const& b) { - return K().intersect_3_object()(b, a); -} - } // namespace #endif // !(CGAL_INTERSECTION_VERSION < 2)