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

Flipped order in convertibility test, fixes #3523 accidentally introduced in r52110

[SVN r56855]
This commit is contained in:
Jeremiah Willcock
2009-10-14 23:27:51 +00:00
parent a880fcbde7
commit 93fae3dece

View File

@@ -387,7 +387,7 @@ namespace boost {
namespace detail {
template<typename VertexBundle, typename EdgeBundle, typename Bundle>
struct is_vertex_bundle
: mpl::and_<is_convertible<Bundle*, VertexBundle*>,
: mpl::and_<is_convertible<VertexBundle*, Bundle*>,
mpl::and_<mpl::not_<is_void<VertexBundle> >,
mpl::not_<is_same<VertexBundle, no_property> > > >
{ };