From ad744ee6bb286efd1f488e492e45de6975d96f9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Mon, 16 Feb 2015 11:57:49 +0100 Subject: [PATCH] fix typename position --- BGL/include/CGAL/boost/graph/Dual.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/BGL/include/CGAL/boost/graph/Dual.h b/BGL/include/CGAL/boost/graph/Dual.h index f36b9a964b4..f2a026e9bad 100644 --- a/BGL/include/CGAL/boost/graph/Dual.h +++ b/BGL/include/CGAL/boost/graph/Dual.h @@ -219,7 +219,7 @@ Iterator_range >::out_edge_iterator> out_edges(typename boost::graph_traits >::vertex_descriptor v, const Dual

& dual) { - typename const Dual

::Primal& primal = dual.primal(); + const typename Dual

::Primal& primal = dual.primal(); return opposite_edges_around_face(halfedge(v,primal),primal); } @@ -228,7 +228,7 @@ Iterator_range >::out_edge_iterator> in_edges(typename boost::graph_traits >::vertex_descriptor v, const Dual

& dual) { - typename const Dual

::Primal& primal = dual.primal(); + const typename Dual

::Primal& primal = dual.primal(); return halfedges_around_face(halfedge(v,primal),primal); } @@ -237,7 +237,7 @@ typename boost::graph_traits >::degree_size_type out_degree(typename boost::graph_traits >::vertex_descriptor v, const Dual

& dual) { - typename const Dual

::Primal& primal = dual.primal(); + const typename Dual

::Primal& primal = dual.primal(); return boost::distance(halfedges_around_face(halfedge(v,primal),primal)); }