Remove tests that require C++03 to pass

This commit is contained in:
Peter Dimov
2019-11-06 03:09:54 +02:00
parent 8ec9323003
commit a7c28f6117
4 changed files with 12 additions and 7 deletions
+1 -1
View File
@@ -96,7 +96,7 @@ static void target_test()
BOOST_CHECK(!f.target<int (*)()>());
BOOST_CHECK(f.target<const Seventeen>());
BOOST_CHECK(f.target<const Seventeen>() == &const_seventeen);
BOOST_CHECK(f.target<const volatile Seventeen>());
// BOOST_CHECK(f.target<const volatile Seventeen>());
BOOST_CHECK(!f.target<Seventeen>());
BOOST_CHECK(!f.target<volatile Seventeen>());
}