From f0fa436fe4b110ac418f4806f40f23ec52fc6188 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Tue, 7 May 2002 11:24:29 +0000 Subject: [PATCH] Added new config macro BOOST_HAS_MS_INT64 to detect presence of __int64 data type. Modified boost source to use BOOST_HAS_LONG_LONG and BOOST_HAS_MS_INT64 where appropriate to do so. [SVN r13714] --- counting_iterator_test.cpp | 2 +- half_open_range_test.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/counting_iterator_test.cpp b/counting_iterator_test.cpp index 62f1e57..5aa6c53 100644 --- a/counting_iterator_test.cpp +++ b/counting_iterator_test.cpp @@ -240,7 +240,7 @@ int main() test_integer(); test_integer(); test_integer(); -#if defined(ULLONG_MAX) || defined(ULONG_LONG_MAX) +#if defined(BOOST_HAS_LONG_LONG) test_integer(); test_integer(); #endif diff --git a/half_open_range_test.cpp b/half_open_range_test.cpp index 04c2e97..b19b4db 100644 --- a/half_open_range_test.cpp +++ b/half_open_range_test.cpp @@ -346,7 +346,7 @@ int main() test_integer(); test_integer(); test_integer(); -#if defined(ULLONG_MAX) || defined(ULONG_LONG_MAX) +#if defined(BOOST_HAS_LONG_LONG) test_integer(); test_integer(); #endif