From aeb2d4a45ce8a08cbbca7173a0b71b4d353fa8fb Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Thu, 10 Jan 2002 19:28:16 +0000 Subject: [PATCH] Modified Files: boost/graph/breadth_first_search.hpp MSVC workaround boost/python/reference.hpp boost/python/converter/type_id.hpp boost/python/converter/unwrap.hpp boost/python/converter/wrap.hpp boost/python/converter/wrapper.hpp boost/python/detail/config.hpp libs/python/Jamfile libs/python/src/converter/registry.cpp libs/python/src/converter/type_id.cpp libs/python/src/converter/unwrap.cpp libs/python/test/m1.cpp Added Files: boost/python/converter/wrapper_base.hpp CXX 6.x fixes [SVN r12271] --- include/boost/graph/breadth_first_search.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/boost/graph/breadth_first_search.hpp b/include/boost/graph/breadth_first_search.hpp index db950831..6a7e4bf7 100644 --- a/include/boost/graph/breadth_first_search.hpp +++ b/include/boost/graph/breadth_first_search.hpp @@ -279,7 +279,8 @@ namespace boost { { typedef graph_traits Traits; // Buffer default - typedef boost::queue queue_t; + typedef typename Traits::vertex_descriptor vertex_descriptor; + typedef boost::queue queue_t; queue_t Q; detail::wrap_ref Qref(Q);