diff --git a/test/is_convertible_test.cpp b/test/is_convertible_test.cpp index 4bcc2db..5a7a0e8 100644 --- a/test/is_convertible_test.cpp +++ b/test/is_convertible_test.cpp @@ -83,6 +83,17 @@ BOOST_CHECK_INTEGRAL_CONSTANT((::tt::is_convertible >::value), true); BOOST_CHECK_INTEGRAL_CONSTANT((::tt::is_convertible >::value), true); +// +// the following all generate warnings unless we can find a way to +// suppress them: +// +BOOST_CHECK_INTEGRAL_CONSTANT((::tt::is_convertible::value), true); +BOOST_CHECK_INTEGRAL_CONSTANT((::tt::is_convertible::value), true); +BOOST_CHECK_INTEGRAL_CONSTANT((::tt::is_convertible::value), true); +BOOST_CHECK_INTEGRAL_CONSTANT((::tt::is_convertible::value), true); +BOOST_CHECK_INTEGRAL_CONSTANT((::tt::is_convertible::value), true); + + TT_TEST_END