fix test_autorefinement on Windows by moving back to boost::unordered_map

This commit is contained in:
Jane Tournois 2022-02-14 14:01:59 +01:00
parent e7bf5b661b
commit 2cc2fab4a2
1 changed files with 2 additions and 1 deletions

View File

@ -31,6 +31,7 @@
#include <boost/functional/hash.hpp> #include <boost/functional/hash.hpp>
#include <stdexcept> #include <stdexcept>
#include <boost/unordered_map.hpp>
#include <unordered_map> #include <unordered_map>
#include <unordered_set> #include <unordered_set>
@ -196,7 +197,7 @@ class Intersection_of_triangle_meshes
typedef CGAL::Box_intersection_d::Box_with_info_d<double, 3, halfedge_descriptor, Box_policy> Box; typedef CGAL::Box_intersection_d::Box_with_info_d<double, 3, halfedge_descriptor, Box_policy> Box;
typedef std::unordered_set<face_descriptor> Face_set; typedef std::unordered_set<face_descriptor> Face_set;
typedef std::unordered_map<edge_descriptor, Face_set> Edge_to_faces; typedef boost::unordered_map<edge_descriptor, Face_set> Edge_to_faces;
static const bool Predicates_on_constructions_needed = static const bool Predicates_on_constructions_needed =
Node_visitor::Predicates_on_constructions_needed; Node_visitor::Predicates_on_constructions_needed;