From 2b5cb2da9f08cc1fdbed23886c227dac16e5eaad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Wed, 10 Mar 2021 14:23:58 +0100 Subject: [PATCH] copy tags --- AABB_tree/include/CGAL/AABB_traits.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/AABB_tree/include/CGAL/AABB_traits.h b/AABB_tree/include/CGAL/AABB_traits.h index 85c86355c57..7cabbdae1df 100644 --- a/AABB_tree/include/CGAL/AABB_traits.h +++ b/AABB_tree/include/CGAL/AABB_traits.h @@ -416,7 +416,7 @@ public: CGAL::SMALLER : CGAL::LARGER; } - CGAL::Comparison_result operator()(const Point& p, const Bounding_box& bb, const Point& bound, const Tag_true&) const + CGAL::Comparison_result operator()(const Point& p, const Bounding_box& bb, const Point& bound, Tag_true) const { return GeomTraits().do_intersect_3_object() (GeomTraits().construct_sphere_3_object() @@ -424,7 +424,7 @@ public: CGAL::SMALLER : CGAL::LARGER; } - CGAL::Comparison_result operator()(const Point& p, const Bounding_box& bb, const Point& bound, const Tag_false&) const + CGAL::Comparison_result operator()(const Point& p, const Bounding_box& bb, const Point& bound, Tag_false) const { return GeomTraits().do_intersect_3_object() (GeomTraits().construct_sphere_3_object() @@ -434,7 +434,7 @@ public: CGAL::Comparison_result operator()(const Point& p, const Bounding_box& bb, const Point& bound) const { - return (*this)(p, bb, bound, CGAL::Boolean_tag::value>()); + return (*this)(p, bb, bound, Boolean_tag::value>()); } template