Index: boost/graph/detail/edge.hpp =================================================================== --- boost/graph/detail/edge.hpp (revision 51789) +++ boost/graph/detail/edge.hpp (working copy) @@ -17,6 +17,8 @@ #include #endif +#include + namespace boost { namespace detail { @@ -94,6 +96,13 @@ { return a.get_property() >= b.get_property(); } + + template + std::size_t hash_value(const detail::edge_desc_impl& a) + { + boost::hash::property_type*> hf; + return hf(a.get_property()); + } } //namespace detail