diff --git a/AABB_tree/include/CGAL/AABB_traits.h b/AABB_tree/include/CGAL/AABB_traits.h index a022070a654..85c86355c57 100644 --- a/AABB_tree/include/CGAL/AABB_traits.h +++ b/AABB_tree/include/CGAL/AABB_traits.h @@ -432,21 +432,9 @@ public: CGAL::SMALLER : CGAL::LARGER; } - template ::value> - struct Use_conservative_static_filters - { - typedef CGAL::Tag_false type; - }; - - template - struct Use_conservative_static_filters - { - typedef CGAL::Boolean_tag type; - }; - CGAL::Comparison_result operator()(const Point& p, const Bounding_box& bb, const Point& bound) const { - return (*this)(p, bb, bound, typename Use_conservative_static_filters::type()); + return (*this)(p, bb, bound, CGAL::Boolean_tag::value>()); } template