diff -urp boost_1_54_0-orig/boost/graph/breadth_first_search.hpp boost_1_54_0/boost/graph/breadth_first_search.hpp
|
old
|
new
|
namespace boost {
|
| 64 | 64 | BOOST_CONCEPT_ASSERT(( IncidenceGraphConcept<IncidenceGraph> )); |
| 65 | 65 | typedef graph_traits<IncidenceGraph> GTraits; |
| 66 | 66 | typedef typename GTraits::vertex_descriptor Vertex; |
| 67 | | typedef typename GTraits::edge_descriptor Edge; |
| 68 | 67 | BOOST_CONCEPT_ASSERT(( BFSVisitorConcept<BFSVisitor, IncidenceGraph> )); |
| 69 | 68 | BOOST_CONCEPT_ASSERT(( ReadWritePropertyMapConcept<ColorMap, Vertex> )); |
| 70 | 69 | typedef typename property_traits<ColorMap>::value_type ColorValue; |