forked from boostorg/type_traits
is_final_test.cpp: disable some tests for msvc-12 for which there is no workaround.
The compiler is unable to detect final class templates.
This commit is contained in:
@ -52,8 +52,10 @@ TT_TEST_BEGIN(is_final)
|
||||
# else
|
||||
BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_final<final_UDT>::value, true);
|
||||
BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_final<final_UDT const>::value, true);
|
||||
# if !BOOST_WORKAROUND(BOOST_MSVC, <= 1800)
|
||||
BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_final<final_template<int> >::value, true);
|
||||
BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_final<final_template<int> const>::value, true);
|
||||
# endif
|
||||
# endif
|
||||
#else
|
||||
std::cout <<
|
||||
|
Reference in New Issue
Block a user