diff --git a/include/boost/config/compiler/vacpp.hpp b/include/boost/config/compiler/vacpp.hpp index cab827f0..96eec1b6 100644 --- a/include/boost/config/compiler/vacpp.hpp +++ b/include/boost/config/compiler/vacpp.hpp @@ -12,10 +12,6 @@ # define BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS #endif -#if (__IBMCPP__ <= 502) -# define BOOST_NO_MEMBER_TEMPLATE_KEYWORD -#endif - #if (__IBMCPP__ <= 502) || !defined(BOOST_STRICT_CONFIG) // Actually the compiler supports inclass member initialization but it // requires a definition for the class member and it doesn't recognize @@ -24,6 +20,10 @@ # define BOOST_NO_INTEGRAL_INT64_T #endif +#if (__IBMCPP__ <= 600) +# define BOOST_NO_MEMBER_TEMPLATE_KEYWORD +#endif + // // On AIX thread support seems to be indicated by _THREAD_SAFE: // @@ -40,8 +40,8 @@ #error "Compiler not supported or configured - please reconfigure" #endif // -// last known and checked version is 500: -#if (__IBMCPP__ > 502) +// last known and checked version is 600: +#if (__IBMCPP__ > 600) # if defined(BOOST_ASSERT_CONFIG) # error "Unknown compiler version - please run the configure tests and report the results" # endif