From c07cc82a4f903a1ff2aaaba7d7b3d4e67c5f47ee Mon Sep 17 00:00:00 2001 From: Jeremy Siek Date: Thu, 6 Dec 2001 20:41:06 +0000 Subject: [PATCH] removed _T in a couple places [SVN r11961] --- include/boost/graph/iteration_macros.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; \