From 2cc2fab4a28a81ce971f983b6d89a13f1412fee6 Mon Sep 17 00:00:00 2001 From: Jane Tournois Date: Mon, 14 Feb 2022 14:01:59 +0100 Subject: [PATCH] fix test_autorefinement on Windows by moving back to boost::unordered_map --- .../internal/Corefinement/intersection_impl.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/internal/Corefinement/intersection_impl.h b/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/internal/Corefinement/intersection_impl.h index c4312cdfd5e..d51759b254c 100644 --- a/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/internal/Corefinement/intersection_impl.h +++ b/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/internal/Corefinement/intersection_impl.h @@ -31,6 +31,7 @@ #include #include +#include #include #include @@ -196,7 +197,7 @@ class Intersection_of_triangle_meshes typedef CGAL::Box_intersection_d::Box_with_info_d Box; typedef std::unordered_set Face_set; - typedef std::unordered_map Edge_to_faces; + typedef boost::unordered_map Edge_to_faces; static const bool Predicates_on_constructions_needed = Node_visitor::Predicates_on_constructions_needed;