summaryrefslogtreecommitdiff
path: root/boost/graph/bellman_ford_shortest_paths.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/graph/bellman_ford_shortest_paths.hpp')
-rw-r--r--boost/graph/bellman_ford_shortest_paths.hpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/boost/graph/bellman_ford_shortest_paths.hpp b/boost/graph/bellman_ford_shortest_paths.hpp
index e102d92209..7873067a15 100644
--- a/boost/graph/bellman_ford_shortest_paths.hpp
+++ b/boost/graph/bellman_ford_shortest_paths.hpp
@@ -102,8 +102,6 @@ namespace boost {
typedef typename GTraits::vertex_descriptor Vertex;
BOOST_CONCEPT_ASSERT(( ReadWritePropertyMapConcept<DistanceMap, Vertex> ));
BOOST_CONCEPT_ASSERT(( ReadablePropertyMapConcept<WeightMap, Edge> ));
- typedef typename property_traits<DistanceMap>::value_type D_value;
- typedef typename property_traits<WeightMap>::value_type W_value;
typename GTraits::edge_iterator i, end;