From 5ab34f4c8c4806121b9de77a64602eac829e9243 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mael=20Rouxel-Labb=C3=A9?= Date: Tue, 16 Oct 2018 08:43:10 +0200 Subject: [PATCH] Specified namespace to avoid look-up errors --- .../include/CGAL/Polygon_mesh_processing/intersection.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/intersection.h b/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/intersection.h index d6b5996fd384..a7c1d4259f2a 100644 --- a/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/intersection.h +++ b/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/intersection.h @@ -1251,7 +1251,7 @@ bool do_intersect(const TriangleMesh& tm1, { CGAL_precondition(CGAL::is_triangle_mesh(tm1)); CGAL_precondition(CGAL::is_triangle_mesh(tm2)); - return do_intersect(tm1, tm2, parameters::all_default(), parameters::all_default()); + return CGAL::Polygon_mesh_processing::do_intersect(tm1, tm2, parameters::all_default(), parameters::all_default()); } /** @@ -1382,7 +1382,7 @@ bool do_intersect(const TriangleMesh& tm, { CGAL_precondition(CGAL::is_triangle_mesh(tm)); - return do_intersect(tm, polylines, parameters::all_default()); + return CGAL::Polygon_mesh_processing::do_intersect(tm, polylines, parameters::all_default()); } @@ -1405,7 +1405,7 @@ bool do_intersect(const TriangleMesh& tm, { CGAL_precondition(CGAL::is_triangle_mesh(tm)); - return do_intersect(tm, polyline, parameters::all_default()); + return CGAL::Polygon_mesh_processing::do_intersect(tm, polyline, parameters::all_default()); } namespace internal{