From 00df4fc3bbc3b165f8a84da31d77df8eed978fc4 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Thu, 29 Nov 2001 17:02:39 +0000 Subject: [PATCH] #ifdef-ed out a test case for MWCW <= 7.1 [SVN r11809] --- bind_test.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bind_test.cpp b/bind_test.cpp index ef88817..81b5db4 100644 --- a/bind_test.cpp +++ b/bind_test.cpp @@ -190,8 +190,12 @@ void function_object_test() BOOST_TEST( bind(Y(), i, _1)(k) == 38 ); BOOST_TEST( bind(Y(), i, _1, 9)(k) == 938 ); +#if !defined(__MWERKS__) || (__MWERKS__ > 0x2406) // Fails for this version of the compiler. + bind(Y(), i, _1, 9, 4)(k); BOOST_TEST( global_result == 4938 ); + +#endif } //