From fc2b8e14b9a9738d0dc9c9938fb948773b2a36c4 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Mon, 15 Jun 2015 09:02:10 +0100 Subject: [PATCH] Disable move-construction for arrays - fixes Oracle C++ issue. --- include/boost/type_traits/is_nothrow_move_constructible.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/boost/type_traits/is_nothrow_move_constructible.hpp b/include/boost/type_traits/is_nothrow_move_constructible.hpp index 4b7a71b..3cbca21 100644 --- a/include/boost/type_traits/is_nothrow_move_constructible.hpp +++ b/include/boost/type_traits/is_nothrow_move_constructible.hpp @@ -49,6 +49,8 @@ template struct is_nothrow_move_constructible template struct is_nothrow_move_constructible : public ::boost::false_type {}; template struct is_nothrow_move_constructible : public ::boost::false_type{}; +template struct is_nothrow_move_constructible : public ::boost::false_type{}; +template struct is_nothrow_move_constructible : public ::boost::false_type{}; #else