diff --git a/include/boost/config/compiler/metrowerks.hpp b/include/boost/config/compiler/metrowerks.hpp index cc8305bf..222a311b 100644 --- a/include/boost/config/compiler/metrowerks.hpp +++ b/include/boost/config/compiler/metrowerks.hpp @@ -24,10 +24,13 @@ # endif # if(__MWERKS__ <= 0x2407) // 7.x -# define BOOST_NO_MEMBER_TEMPLATE_FRIENDS # define BOOST_NO_MEMBER_FUNCTION_SPECIALIZATIONS # endif +# if(__MWERKS__ <= 0x3003) // 8.x +# define BOOST_NO_MEMBER_TEMPLATE_FRIENDS +# endif + #if !__option(wchar_type) # define BOOST_NO_INTRINSIC_WCHAR_T #endif @@ -38,6 +41,8 @@ # define BOOST_COMPILER_VERSION 8.1 # elif __MWERKS__ == 0x3002 # define BOOST_COMPILER_VERSION 8.2 +# elif __MWERKS__ == 0x3003 +# define BOOST_COMPILER_VERSION 8.3 # else # define BOOST_COMPILER_VERSION __MWERKS__ # endif @@ -52,7 +57,7 @@ #endif // // last known and checked version: -#if (__MWERKS__ > 0x3002) +#if (__MWERKS__ > 0x3003) # if defined(BOOST_ASSERT_CONFIG) # error "Unknown compiler version - please run the configure tests and report the results" # endif