From 1506f05fbb87a9de49d881b71fc00e62c5a53423 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Wed, 31 May 2017 17:29:52 +0300 Subject: [PATCH] g++ 4.7 doesn't have is_nothrow_destructible either --- test/mp_any.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/mp_any.cpp b/test/mp_any.cpp index 4e236d7..4780ea9 100644 --- a/test/mp_any.cpp +++ b/test/mp_any.cpp @@ -21,7 +21,7 @@ template using check3 = mp_any struct variant_base_impl {}; #if BOOST_WORKAROUND( BOOST_GCC, < 40800 ) -template using variant_base = variant_base_impl...>::value, mp_any...>, std::is_nothrow_default_constructible...>::value, T...>; +template using variant_base = variant_base_impl...>::value, mp_any...>, std::is_nothrow_default_constructible...>::value, T...>; #else template using variant_base = variant_base_impl...>::value, mp_any...>, std::is_nothrow_default_constructible...>::value, T...>; #endif