diff --git a/test/common.ipp b/test/common.ipp index 09bfebc..17e1914 100644 --- a/test/common.ipp +++ b/test/common.ipp @@ -2296,11 +2296,11 @@ void check_containers_exception_specifications() { #ifndef BOOST_CLANG // Clang has an error in __has_nothrow_constructor implementation: // http://llvm.org/bugs/show_bug.cgi?id=16627 - BOOST_CHECK(boost::is_nothrow_move_constructible >::value); + BOOST_CHECK(boost::has_nothrow_constructor >::value); #endif BOOST_CHECK(boost::is_nothrow_move_assignable >::value); - BOOST_CHECK(boost::has_nothrow_constructor >::value); + BOOST_CHECK(boost::is_nothrow_move_constructible >::value); #endif }