Fixed my own typo (refs #7888)

[SVN r85082]
This commit is contained in:
Antony Polukhin
2013-07-19 14:41:41 +00:00
parent 1d0e7d01f9
commit 25b1edf93c

View File

@@ -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<CB_CONTAINER<int> >::value);
BOOST_CHECK(boost::has_nothrow_constructor<CB_CONTAINER<int> >::value);
#endif
BOOST_CHECK(boost::is_nothrow_move_assignable<CB_CONTAINER<int> >::value);
BOOST_CHECK(boost::has_nothrow_constructor<CB_CONTAINER<int> >::value);
BOOST_CHECK(boost::is_nothrow_move_constructible<CB_CONTAINER<int> >::value);
#endif
}