From 99a5e3c8ea9b84af7de3d1a3fd50bf18b147450b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Thu, 13 Jan 2022 14:01:41 +0100 Subject: [PATCH] try to please MSVC2015 --- .../CGAL/Polygon_mesh_processing/internal/Snapping/snap.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/internal/Snapping/snap.h b/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/internal/Snapping/snap.h index 0771453974c..20fe2f099dc 100644 --- a/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/internal/Snapping/snap.h +++ b/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/internal/Snapping/snap.h @@ -1301,7 +1301,9 @@ std::size_t snap_borders(TriangleMesh& tm_A, TriangleMesh& tm_B, ToleranceMap_B tolerance_map_B, const NamedParameters_A& np_A = parameters::default_values(), - const NamedParameters_B& np_B = parameters::default_values()) + const NamedParameters_B& np_B = parameters::default_values(), + const typename std::enable_if_t::value>* = 0 + ) { typedef typename boost::graph_traits::halfedge_descriptor halfedge_descriptor;