From 25b1edf93c7cd84dfbfc485f5384bbfb12e8b4c0 Mon Sep 17 00:00:00 2001 From: Antony Polukhin Date: Fri, 19 Jul 2013 14:41:41 +0000 Subject: [PATCH] Fixed my own typo (refs #7888) [SVN r85082] --- test/common.ipp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 }