From cb5fd9404ccb8b7fe25ea1bb849eb7d0f7f5054e Mon Sep 17 00:00:00 2001 From: Giles Bathgate Date: Fri, 13 Jan 2023 18:43:33 +0000 Subject: [PATCH] Remove unused hash function --- .../include/CGAL/Nef_3/binop_intersection_tests.h | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/Nef_3/include/CGAL/Nef_3/binop_intersection_tests.h b/Nef_3/include/CGAL/Nef_3/binop_intersection_tests.h index 85ab8fc0058..247848196e3 100644 --- a/Nef_3/include/CGAL/Nef_3/binop_intersection_tests.h +++ b/Nef_3/include/CGAL/Nef_3/binop_intersection_tests.h @@ -40,21 +40,6 @@ struct binop_intersection_test_segment_tree { struct Bop_edge0_face1_callback { Callback &cb; - struct Pair_hash_function { - typedef std::size_t result_type; - - template - std::size_t - operator() (const H& h) const { - return - std::size_t(&*(h.first)) / sizeof - (typename std::iterator_traits::value_type) - + - std::size_t(&*(h.second)) / sizeof - (typename std::iterator_traits::value_type); - } - }; - Bop_edge0_face1_callback(Callback &cb) : cb(cb) {}