From b554c5ae26c5a4a53e2fd640d6b4ee55f5fe0b6e Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Sun, 14 Jun 2015 19:27:32 +0100 Subject: [PATCH] Oops should be using is_constructible not is_assignable in has_trivial_move_constructor.hpp. --- include/boost/type_traits/has_trivial_move_constructor.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/type_traits/has_trivial_move_constructor.hpp b/include/boost/type_traits/has_trivial_move_constructor.hpp index d5f5dee..5b43c7f 100644 --- a/include/boost/type_traits/has_trivial_move_constructor.hpp +++ b/include/boost/type_traits/has_trivial_move_constructor.hpp @@ -34,10 +34,10 @@ template struct has_trivial_move_constructor : public integral_cons #else #ifdef __SUNPRO_CC -#include +#include #include #if __cplusplus >= 201103 -#define SOLARIS_EXTRA_CHECK && is_assignable::type&, typename remove_const::type&&>::value +#define SOLARIS_EXTRA_CHECK && is_constructible::type, typename remove_const::type&&>::value #endif #endif