don't test "long long" with gcc 3.0's shipped library

[SVN r10094]
This commit is contained in:
Jens Maurer
2001-05-11 16:55:31 +00:00
parent 326ca342c6
commit 1f933d75a5

View File

@ -129,7 +129,7 @@ int test_main(int, char*[])
test_integral_limits(long(), "long");
typedef unsigned long unsigned_long;
test_integral_limits(unsigned_long(), "unsigned long");
#ifdef __GNUC__
#if defined(__GNUC__) && !(__GNUC__ == 3 && __GNUC_MINOR__ == 0 && defined(__GLIBCPP__))
typedef long long long_long;
test_integral_limits(long_long(), "long long");
typedef unsigned long long unsigned_long_long;