forked from boostorg/config
Allow testing of both __int64 and long long at the same time.
[SVN r21039]
This commit is contained in:
@@ -181,10 +181,10 @@ int test_main(int, char*[])
|
|||||||
test_integral_limits(unsigned_long_long(), "unsigned long long");
|
test_integral_limits(unsigned_long_long(), "unsigned long long");
|
||||||
#endif
|
#endif
|
||||||
#ifdef BOOST_HAS_MS_INT64
|
#ifdef BOOST_HAS_MS_INT64
|
||||||
typedef __int64 long_long;
|
typedef __int64 long_long2;
|
||||||
test_integral_limits(long_long(), "__int64");
|
test_integral_limits(long_long2(), "__int64");
|
||||||
typedef unsigned __int64 unsigned_long_long;
|
typedef unsigned __int64 unsigned_long_long2;
|
||||||
test_integral_limits(unsigned_long_long(), "unsigned __int64");
|
test_integral_limits(unsigned_long_long2(), "unsigned __int64");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
test_float_limits(float(), "float");
|
test_float_limits(float(), "float");
|
||||||
@@ -196,3 +196,4 @@ int test_main(int, char*[])
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user