From 57e7ccd494cca3e6c15d0e26895240d0b7e4f387 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Sat, 13 Jul 2002 12:26:19 +0000 Subject: [PATCH] Fix unversioned VC++ checks [SVN r14436] --- integer_traits_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integer_traits_test.cpp b/integer_traits_test.cpp index 6384156..d0127d6 100644 --- a/integer_traits_test.cpp +++ b/integer_traits_test.cpp @@ -83,7 +83,7 @@ int test_main(int, char*[]) runtest("long", long()); typedef unsigned long unsigned_long; runtest("unsigned long", unsigned_long()); -#if !defined(BOOST_NO_INT64_T) && !defined(BOOST_MSVC) && !defined(__BORLANDC__) && !defined(__BEOS__) +#if !defined(BOOST_NO_INT64_T) && (!defined(BOOST_MSVC) || BOOST_MSVC > 1300) && !defined(__BORLANDC__) && !defined(__BEOS__) // // MS/Borland compilers can't support 64-bit member constants // BeOS doesn't have specialisations for long long in SGI's header.