From 4d0b730f62a84767ecf788410b2611df825ee4a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Mon, 19 Jan 2015 10:35:08 +0100 Subject: [PATCH] add missing typename --- BGL/include/CGAL/boost/graph/Euler_operations.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BGL/include/CGAL/boost/graph/Euler_operations.h b/BGL/include/CGAL/boost/graph/Euler_operations.h index a9059eaaf8f..0c583d722b4 100644 --- a/BGL/include/CGAL/boost/graph/Euler_operations.h +++ b/BGL/include/CGAL/boost/graph/Euler_operations.h @@ -89,7 +89,7 @@ make_tetrahedron(Graph& g, const P& p0, const P& p1, const P& p2, const P& p3) typedef typename Traits::halfedge_descriptor halfedge_descriptor; typedef typename Traits::vertex_descriptor vertex_descriptor; typedef typename Traits::face_descriptor face_descriptor; - typedef boost::property_map::type Point_property_map; + typedef typename boost::property_map::type Point_property_map; Point_property_map ppmap = get(CGAL::vertex_point, g); vertex_descriptor v0, v1, v2, v3, v4;