From ac6f68cf80ed9986f6b7af2c8a18bfe78e5bac6e Mon Sep 17 00:00:00 2001 From: Fernando Cacciola Date: Thu, 30 Jan 2003 22:13:22 +0000 Subject: [PATCH] vc7.0 compatibility fix [SVN r17099] --- test/optional_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/optional_test.cpp b/test/optional_test.cpp index f1e3e4a..2b97c45 100644 --- a/test/optional_test.cpp +++ b/test/optional_test.cpp @@ -63,7 +63,7 @@ using boost::get_pointer ; // MSVC6.0 does not support comparisons of optional against a literal null pointer value (0) // via the safe_bool operator. -#if BOOST_WORKAROUND(BOOST_MSVC, <= 1200) // 1200 == VC++ 6.0 +#if BOOST_WORKAROUND(BOOST_MSVC, BOOST_TESTED_AT(1300) ) // 1300 == VC++ 7.1 #define BOOST_OPTIONAL_NO_NULL_COMPARE #endif