From a0061ba07e8662561b362461c2d4347a5eb5f236 Mon Sep 17 00:00:00 2001 From: Jeremy Siek Date: Fri, 7 Dec 2001 17:34:56 +0000 Subject: [PATCH] ADJACENT -> ADJ [SVN r11974] --- 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 12001eb4..0199464a 100644 --- a/include/boost/graph/iteration_macros.hpp +++ b/include/boost/graph/iteration_macros.hpp @@ -86,7 +86,7 @@ for (boost::graph_traits::edge_iterator \ BGL_FIRST(__LINE__) != BGL_LAST(__LINE__) ? (ENAME = *BGL_FIRST(__LINE__), true):false; \ ++BGL_FIRST(__LINE__)) -#define BGL_FORALL_ADJACENT_T(UNAME, VNAME, GNAME, GraphType) \ +#define BGL_FORALL_ADJ_T(UNAME, VNAME, GNAME, GraphType) \ for (typename boost::graph_traits::adjacency_iterator \ BGL_FIRST(__LINE__) = adjacent_vertices(UNAME, GNAME).first,\ BGL_LAST(__LINE__) = adjacent_vertices(UNAME, GNAME).second; \ @@ -95,7 +95,7 @@ for (typename boost::graph_traits::vertex_descriptor VNAME; \ BGL_FIRST(__LINE__) != BGL_LAST(__LINE__) ? (VNAME = *BGL_FIRST(__LINE__), true) : false; \ ++BGL_FIRST(__LINE__)) -#define BGL_FORALL_ADJACENT(UNAME, VNAME, GNAME, GraphType) \ +#define BGL_FORALL_ADJ(UNAME, VNAME, GNAME, GraphType) \ for (boost::graph_traits::adjacency_iterator \ BGL_FIRST(__LINE__) = adjacent_vertices(UNAME, GNAME).first,\ BGL_LAST(__LINE__) = adjacent_vertices(UNAME, GNAME).second; \