Disable move-construction for arrays - fixes Oracle C++ issue.

This commit is contained in:
jzmaddock
2015-06-15 09:02:10 +01:00
parent 821d5a177f
commit fc2b8e14b9

View File

@ -49,6 +49,8 @@ template <class T> struct is_nothrow_move_constructible
template <class T> struct is_nothrow_move_constructible<volatile T> : public ::boost::false_type {};
template <class T> struct is_nothrow_move_constructible<const volatile T> : public ::boost::false_type{};
template <class T, std::size_t N> struct is_nothrow_move_constructible<T[N]> : public ::boost::false_type{};
template <class T> struct is_nothrow_move_constructible<T[]> : public ::boost::false_type{};
#else