From 5ddd3757f7142bd5f1098d0a38310ec127986bbd Mon Sep 17 00:00:00 2001 From: John Maddock Date: Tue, 8 Apr 2003 10:47:54 +0000 Subject: [PATCH] Added warning suppression tests [SVN r18203] --- test/is_convertible_test.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) 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