Petr Machata 5a207d
diff -urp boost_1_54_0-orig/boost/graph/breadth_first_search.hpp boost_1_54_0/boost/graph/breadth_first_search.hpp
Petr Machata 5a207d
--- boost_1_54_0-orig/boost/graph/breadth_first_search.hpp	2013-07-23 00:47:43.418886551 +0200
Petr Machata 5a207d
+++ boost_1_54_0/boost/graph/breadth_first_search.hpp	2013-07-23 00:50:40.339958756 +0200
Petr Machata 5a207d
@@ -64,7 +64,6 @@ namespace boost {
Petr Machata 5a207d
     BOOST_CONCEPT_ASSERT(( IncidenceGraphConcept<IncidenceGraph> ));
Petr Machata 5a207d
     typedef graph_traits<IncidenceGraph> GTraits;
Petr Machata 5a207d
     typedef typename GTraits::vertex_descriptor Vertex;
Petr Machata 5a207d
-    typedef typename GTraits::edge_descriptor Edge;
Petr Machata 5a207d
     BOOST_CONCEPT_ASSERT(( BFSVisitorConcept<BFSVisitor, IncidenceGraph> ));
Petr Machata 5a207d
     BOOST_CONCEPT_ASSERT(( ReadWritePropertyMapConcept<ColorMap, Vertex> ));
Petr Machata 5a207d
     typedef typename property_traits<ColorMap>::value_type ColorValue;