From 0beb1a886125ae85c3efe3c92ac9df6f992c8fb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Fri, 19 Apr 2013 08:38:56 +0200 Subject: [PATCH] add an extra overload to please MSVC --- .../include/CGAL/Triangulation_data_structure_3.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Triangulation_3/include/CGAL/Triangulation_data_structure_3.h b/Triangulation_3/include/CGAL/Triangulation_data_structure_3.h index a8ab50dd284..96d51faab4c 100644 --- a/Triangulation_3/include/CGAL/Triangulation_data_structure_3.h +++ b/Triangulation_3/include/CGAL/Triangulation_data_structure_3.h @@ -999,7 +999,13 @@ public: // Helping functions template Vertex_handle copy_tds(const TDS_src & tds, - typename TDS_src::Vertex_handle vert = typename TDS_src::Vertex_handle() ); + typename TDS_src::Vertex_handle vert); + + template + Vertex_handle copy_tds(const TDS_src & tds) + { + return copy_tds(tds, typename TDS_src::Vertex_handle()); + } // returns the new vertex corresponding to vert in the new tds template