1
0
forked from boostorg/bind

#ifdef-ed out a test case for MWCW <= 7.1

[SVN r11809]
This commit is contained in:
Peter Dimov
2001-11-29 17:02:39 +00:00
parent 389154b530
commit 00df4fc3bb

View File

@@ -190,8 +190,12 @@ void function_object_test()
BOOST_TEST( bind<int>(Y(), i, _1)(k) == 38 );
BOOST_TEST( bind<long>(Y(), i, _1, 9)(k) == 938 );
#if !defined(__MWERKS__) || (__MWERKS__ > 0x2406) // Fails for this version of the compiler.
bind<void>(Y(), i, _1, 9, 4)(k);
BOOST_TEST( global_result == 4938 );
#endif
}
//