From ecf6aa105a08992b34be2aa540b4c0e33366e98d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Fri, 23 Mar 2012 16:29:54 +0000 Subject: [PATCH] correct wrong typedef --- Polyhedron/include/CGAL/Polyhedron_copy_3.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Polyhedron/include/CGAL/Polyhedron_copy_3.h b/Polyhedron/include/CGAL/Polyhedron_copy_3.h index 4517dddb96b..3bbb505fc6a 100644 --- a/Polyhedron/include/CGAL/Polyhedron_copy_3.h +++ b/Polyhedron/include/CGAL/Polyhedron_copy_3.h @@ -49,7 +49,7 @@ Polyhedron_copy_3:: operator()( HDS& target) { typedef typename Poly::Vertex_const_iterator Vertex_const_iterator; typedef typename Poly::Facet_const_iterator Facet_const_iterator; typedef Inverse_index< Vertex_const_iterator> Index; - typedef typename HDS::Point Point; + typedef typename HDS::Vertex::Point Point; target.clear(); Polyhedron_incremental_builder_3 B( target);