mirror of
https://github.com/boostorg/utility.git
synced 2025-07-30 12:57:31 +02:00
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]
This commit is contained in:
@ -240,7 +240,7 @@ int main()
|
|||||||
test_integer<unsigned int>();
|
test_integer<unsigned int>();
|
||||||
test_integer<long>();
|
test_integer<long>();
|
||||||
test_integer<unsigned long>();
|
test_integer<unsigned long>();
|
||||||
#if defined(ULLONG_MAX) || defined(ULONG_LONG_MAX)
|
#if defined(BOOST_HAS_LONG_LONG)
|
||||||
test_integer<long long>();
|
test_integer<long long>();
|
||||||
test_integer<unsigned long long>();
|
test_integer<unsigned long long>();
|
||||||
#endif
|
#endif
|
||||||
|
@ -346,7 +346,7 @@ int main()
|
|||||||
test_integer<unsigned int>();
|
test_integer<unsigned int>();
|
||||||
test_integer<long>();
|
test_integer<long>();
|
||||||
test_integer<unsigned long>();
|
test_integer<unsigned long>();
|
||||||
#if defined(ULLONG_MAX) || defined(ULONG_LONG_MAX)
|
#if defined(BOOST_HAS_LONG_LONG)
|
||||||
test_integer<long long>();
|
test_integer<long long>();
|
||||||
test_integer<unsigned long long>();
|
test_integer<unsigned long long>();
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user