Fixed expected errors with gcc

[SVN r9684]
This commit is contained in:
John Maddock
2001-03-30 11:55:23 +00:00
parent 111d40e909
commit 27cffefbd7

View File

@ -60,7 +60,10 @@ int main(int argc, char* argv[])
// define the number of failures expected for given compilers:
#ifdef BOOST_MSVC
unsigned int expected_failures = 3;
#elif defined(__GNUC__)
unsigned int expected_failures = 1; // cr_type doesn't compile
#else
unsigned int expected_failures = 0;
#endif