forked from boostorg/type_traits
Fixed broken compiler workaround logic (it was previously the wrong way around).
[SVN r27863]
This commit is contained in:
@@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user