From b48fae5352d2ecc6065294f7dc84f8e00dfc41d3 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Wed, 9 May 2018 18:13:58 +0100 Subject: [PATCH] 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. --- test/is_final_test.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/is_final_test.cpp b/test/is_final_test.cpp index ba0772b..09ca160 100644 --- a/test/is_final_test.cpp +++ b/test/is_final_test.cpp @@ -52,8 +52,10 @@ TT_TEST_BEGIN(is_final) # else BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_final::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_final::value, true); +# if !BOOST_WORKAROUND(BOOST_MSVC, <= 1800) BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_final >::value, true); BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_final const>::value, true); +# endif # endif #else std::cout <<