Fixed broken compiler workaround logic (it was previously the wrong way around).

[SVN r27863]
This commit is contained in:
John Maddock
2005-03-29 11:17:30 +00:00
parent 8513618762
commit 2de95cfbf7

View File

@@ -49,7 +49,7 @@
// if tests for cv-qualified member functions don't
// work in is_member_function_pointer
//
#if !((defined(__MWERKS__) && __MWERKS__ < 0x3000) || (defined(__IBMCPP__) && __IBMCPP__ <= 600))
#if (defined(__MWERKS__) && __MWERKS__ < 0x3000) || (defined(__IBMCPP__) && __IBMCPP__ <= 600)
# define BOOST_TT_NO_CV_FUNC_TEST
#endif