More type_traits tweeks.

[SVN r9287]
This commit is contained in:
John Maddock 2001-02-20 12:17:55 +00:00
parent 78886ab383
commit a19d13f123
2 changed files with 5 additions and 1 deletions

View File

@ -366,7 +366,10 @@ template struct call_traits_test<int[2], true>;
unsigned int expected_failures = 10;
#elif defined(__BORLANDC__)
unsigned int expected_failures = 2;
#elif defined(__GNUC__)
unsigned int expected_failures = 4;
#else
unsigned int expected_failures = 0;
#endif

View File

@ -149,7 +149,7 @@ template compressed_pair<double, int[2]>::compressed_pair();
#ifdef __BORLANDC__
// can't handle both types empty:
unsigned int expected_failures = 1;
unsigned int expected_failures = 4;
#elif defined(__GNUC__)
// no zero sized base classes:
unsigned int expected_failures = 4;
@ -159,3 +159,4 @@ unsigned int expected_failures = 0;