From 25dcd6f92c401238591ebaedbe342ce611528b75 Mon Sep 17 00:00:00 2001 From: Jeremy Siek Date: Thu, 12 Sep 2002 02:27:46 +0000 Subject: [PATCH] added this-> to access m_vis, since the base class is dependent [SVN r15270] --- include/boost/graph/dijkstra_shortest_paths.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/graph/dijkstra_shortest_paths.hpp b/include/boost/graph/dijkstra_shortest_paths.hpp index f0bd43e6..65833757 100644 --- a/include/boost/graph/dijkstra_shortest_paths.hpp +++ b/include/boost/graph/dijkstra_shortest_paths.hpp @@ -69,11 +69,11 @@ namespace boost { template void edge_relaxed(Edge e, Graph& g) { - invoke_visitors(m_vis, e, g, on_edge_relaxed()); + invoke_visitors(this->m_vis, e, g, on_edge_relaxed()); } template void edge_not_relaxed(Edge e, Graph& g) { - invoke_visitors(m_vis, e, g, on_edge_not_relaxed()); + invoke_visitors(this->m_vis, e, g, on_edge_not_relaxed()); } private: template