From 4f873ea6327a893ab564d309d0d8e4356b0fe213 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sat, 19 Mar 2011 18:03:57 +0000 Subject: [PATCH] Don't test msvc bug case for versions of msvc that don't support the fix. [SVN r70203] --- test/is_convertible_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/is_convertible_test.cpp b/test/is_convertible_test.cpp index 4a82267..7c04e91 100644 --- a/test/is_convertible_test.cpp +++ b/test/is_convertible_test.cpp @@ -182,7 +182,7 @@ BOOST_CHECK_INTEGRAL_CONSTANT((::tt::is_convertible<__int64,float>::value), true BOOST_CHECK_INTEGRAL_CONSTANT((::tt::is_convertible,A4530>::value), true); #endif -#ifdef BOOST_MSVC +#if defined(BOOST_MSVC) && (BOOST_MSVC > 1310) BOOST_CHECK_INTEGRAL_CONSTANT((::tt::is_convertible::value), false); BOOST_CHECK_INTEGRAL_CONSTANT((::tt::is_convertible::value), true); #endif