Remove unused hash function

This commit is contained in:
Giles Bathgate 2023-01-13 18:43:33 +00:00
parent 15820b3009
commit cb5fd9404c
1 changed files with 0 additions and 15 deletions

View File

@ -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 <class H>
std::size_t
operator() (const H& h) const {
return
std::size_t(&*(h.first)) / sizeof
(typename std::iterator_traits<typename H::first_type>::value_type)
+
std::size_t(&*(h.second)) / sizeof
(typename std::iterator_traits<typename H::second_type>::value_type);
}
};
Bop_edge0_face1_callback(Callback &cb)
: cb(cb)
{}