Updated preprocessor logic to use BOOST_HAS_LONG_LONG

[SVN r11399]
This commit is contained in:
John Maddock
2001-10-18 11:33:52 +00:00
committed by Andrey Semashev
parent 3db9d2e843
commit 40d73a99e9

View File

@ -374,7 +374,7 @@ int main()
test<unsigned int>();
test<long>();
test<unsigned long>();
#if defined(ULLONG_MAX) || defined(ULONG_LONG_MAX)
#if defined(BOOST_HAS_LONG_LONG) && !defined(BOOST_NO_INTEGRAL_INT64_T)
test<long long>();
test<unsigned long long>();
#elif defined(BOOST_MSVC)