2
0
mirror of https://github.com/boostorg/graph.git synced 2026-02-26 04:42:16 +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:
Jeremiah Willcock
2012-01-15 23:32:09 +00:00
parent a88250f76f
commit 4b95dcfbe9
73 changed files with 756 additions and 564 deletions

View File

@@ -8,6 +8,7 @@
#include <vector>
#include <string>
#include <boost/property_map/property_map.hpp>
#include <boost/concept/assert.hpp>
#ifdef BOOST_NO_STD_ITERATOR_TRAITS
#error This examples requires a compiler that provides a working std::iterator_traits
@@ -53,6 +54,6 @@ main()
typedef foo::iterator_property_map < vec_t::iterator,
boost::identity_property_map > pmap_t;
using namespace boost;
function_requires < Mutable_LvaluePropertyMapConcept < pmap_t, int > >();
BOOST_CONCEPT_ASSERT(( Mutable_LvaluePropertyMapConcept<pmap_t, int> ));
return 0;
}