Allow testing of both __int64 and long long at the same time.

[SVN r21039]
This commit is contained in:
John Maddock
2003-12-01 12:00:26 +00:00
parent 363b340c2c
commit 818670ad28

View File

@ -181,10 +181,10 @@ int test_main(int, char*[])
test_integral_limits(unsigned_long_long(), "unsigned long long");
#endif
#ifdef BOOST_HAS_MS_INT64
typedef __int64 long_long;
test_integral_limits(long_long(), "__int64");
typedef unsigned __int64 unsigned_long_long;
test_integral_limits(unsigned_long_long(), "unsigned __int64");
typedef __int64 long_long2;
test_integral_limits(long_long2(), "__int64");
typedef unsigned __int64 unsigned_long_long2;
test_integral_limits(unsigned_long_long2(), "unsigned __int64");
#endif
test_float_limits(float(), "float");
@ -196,3 +196,4 @@ int test_main(int, char*[])
return 0;
}