2
0
mirror of https://github.com/boostorg/graph.git synced 2026-01-30 20:02:12 +00:00

Fixed graph property constness issues

[SVN r57910]
This commit is contained in:
Jeremiah Willcock
2009-11-24 21:35:30 +00:00
parent 08d4597f35
commit 1d018bbeab

View File

@@ -9,6 +9,8 @@
#include <boost/graph/adjacency_iterator.hpp>
#include <boost/graph/properties.hpp>
#include <boost/tuple/tuple.hpp>
#include <boost/type_traits.hpp>
#include <boost/mpl/if.hpp>
#if BOOST_WORKAROUND(BOOST_MSVC, < 1300)
// Stay out of the way of the concept checking class
@@ -324,7 +326,10 @@ set_property(const reverse_graph<BidirectionalGraph,GRef>& g, Tag tag,
template<typename BidirectionalGraph, typename GRef, typename Tag>
inline
typename graph_property<BidirectionalGraph, Tag>::type
typename boost::mpl::if_<
boost::is_const<typename boost::remove_reference<GRef>::type>,
const typename graph_property<BidirectionalGraph, Tag>::type&,
typename graph_property<BidirectionalGraph, Tag>::type& >::type
get_property(const reverse_graph<BidirectionalGraph,GRef>& g, Tag tag)
{
return get_property(g.m_g, tag);