summaryrefslogtreecommitdiff
path: root/boost/graph/astar_search.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/graph/astar_search.hpp')
-rw-r--r--boost/graph/astar_search.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/boost/graph/astar_search.hpp b/boost/graph/astar_search.hpp
index 316e706390..132dca021c 100644
--- a/boost/graph/astar_search.hpp
+++ b/boost/graph/astar_search.hpp
@@ -158,6 +158,7 @@ namespace boost {
template <class Edge, class Graph>
void tree_edge(Edge e, const Graph& g) {
+ using boost::get;
m_decreased = relax(e, g, m_weight, m_predecessor, m_distance,
m_combine, m_compare);
@@ -173,6 +174,7 @@ namespace boost {
template <class Edge, class Graph>
void gray_target(Edge e, const Graph& g) {
+ using boost::get;
m_decreased = relax(e, g, m_weight, m_predecessor, m_distance,
m_combine, m_compare);
@@ -189,6 +191,7 @@ namespace boost {
template <class Edge, class Graph>
void black_target(Edge e, const Graph& g) {
+ using boost::get;
m_decreased = relax(e, g, m_weight, m_predecessor, m_distance,
m_combine, m_compare);