From 2de95cfbf7de63ffdfe272c4fbe44b1bcf9981de Mon Sep 17 00:00:00 2001 From: John Maddock Date: Tue, 29 Mar 2005 11:17:30 +0000 Subject: [PATCH] Fixed broken compiler workaround logic (it was previously the wrong way around). [SVN r27863] --- include/boost/type_traits/config.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/type_traits/config.hpp b/include/boost/type_traits/config.hpp index 576a23e..d1c773a 100644 --- a/include/boost/type_traits/config.hpp +++ b/include/boost/type_traits/config.hpp @@ -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