diff --git a/include/boost/graph/iteration_macros.hpp b/include/boost/graph/iteration_macros.hpp index 5a8491d2..12001eb4 100644 --- a/include/boost/graph/iteration_macros.hpp +++ b/include/boost/graph/iteration_macros.hpp @@ -113,7 +113,7 @@ for (typename boost::graph_traits::edge_descriptor ENAME; \ BGL_FIRST(__LINE__) != BGL_LAST(__LINE__) ? (ENAME = *BGL_FIRST(__LINE__), true) : false; \ ++BGL_FIRST(__LINE__)) -#define BGL_FORALL_OUTEDGES_T(UNAME, ENAME, GNAME, GraphType) \ +#define BGL_FORALL_OUTEDGES(UNAME, ENAME, GNAME, GraphType) \ for (boost::graph_traits::out_edge_iterator \ BGL_FIRST(__LINE__) = out_edges(UNAME, GNAME).first,\ BGL_LAST(__LINE__) = out_edges(UNAME, GNAME).second; \ @@ -131,7 +131,7 @@ for (typename boost::graph_traits::edge_descriptor ENAME; \ BGL_FIRST(__LINE__) != BGL_LAST(__LINE__) ? (ENAME = *BGL_FIRST(__LINE__), true) : false; \ ++BGL_FIRST(__LINE__)) -#define BGL_FORALL_INEDGES_T(UNAME, ENAME, GNAME, GraphType) \ +#define BGL_FORALL_INEDGES(UNAME, ENAME, GNAME, GraphType) \ for (boost::graph_traits::in_edge_iterator \ BGL_FIRST(__LINE__) = in_edges(UNAME, GNAME).first,\ BGL_LAST(__LINE__) = in_edges(UNAME, GNAME).second; \