mirror of
https://github.com/boostorg/graph.git
synced 2026-02-11 11:52:12 +00:00
Merged r76050, r75547, r75891, r76049, r76083, and r76439 from trunk (reverse_graph bug fixes and fix for #6293); refs #6293
[SVN r76535]
This commit is contained in:
@@ -9,6 +9,7 @@
|
||||
#include <boost/graph/graph_concepts.hpp>
|
||||
#include <boost/graph/graph_archetypes.hpp>
|
||||
#include <boost/graph/edge_list.hpp>
|
||||
#include <boost/concept/assert.hpp>
|
||||
#include <cstddef>
|
||||
#include <iterator>
|
||||
|
||||
@@ -24,10 +25,10 @@ int main(int,char*[])
|
||||
|
||||
typedef graph_traits<EdgeList>::edge_descriptor Edge;
|
||||
|
||||
function_requires< EdgeListGraphConcept<EdgeList> >();
|
||||
BOOST_CONCEPT_ASSERT(( EdgeListGraphConcept<EdgeList> ));
|
||||
|
||||
function_requires< ReadablePropertyGraphConcept<EdgeList, Edge,
|
||||
edge_index_t> >();
|
||||
BOOST_CONCEPT_ASSERT(( ReadablePropertyGraphConcept<EdgeList, Edge,
|
||||
edge_index_t> ));
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user