From 93fae3dece50499d2dd331c7cfdff7c5f22ee52c Mon Sep 17 00:00:00 2001 From: Jeremiah Willcock Date: Wed, 14 Oct 2009 23:27:51 +0000 Subject: [PATCH] Flipped order in convertibility test, fixes #3523 accidentally introduced in r52110 [SVN r56855] --- include/boost/graph/properties.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/graph/properties.hpp b/include/boost/graph/properties.hpp index 4ed1a669..3a313b17 100644 --- a/include/boost/graph/properties.hpp +++ b/include/boost/graph/properties.hpp @@ -387,7 +387,7 @@ namespace boost { namespace detail { template struct is_vertex_bundle - : mpl::and_, + : mpl::and_, mpl::and_ >, mpl::not_ > > > { };