From 27cffefbd7aebc3b8b7f0a9cd806be66a1b88a19 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Fri, 30 Mar 2001 11:55:23 +0000 Subject: [PATCH] Fixed expected errors with gcc [SVN r9684] --- tests/cv_traits_test.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/cv_traits_test.cpp b/tests/cv_traits_test.cpp index 98e150a..acfcc02 100644 --- a/tests/cv_traits_test.cpp +++ b/tests/cv_traits_test.cpp @@ -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 +