From 03abb9c07aab9c48cccd6b14fd4e07e49c41de20 Mon Sep 17 00:00:00 2001 From: Beman Dawes Date: Tue, 6 Jan 2004 01:03:43 +0000 Subject: [PATCH] Ed Swartz of Metrowerks says __MWERKS__ will be 0x3202 for 9.2 [SVN r21505] --- include/boost/config/compiler/metrowerks.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/boost/config/compiler/metrowerks.hpp b/include/boost/config/compiler/metrowerks.hpp index bc593242..1e952f85 100644 --- a/include/boost/config/compiler/metrowerks.hpp +++ b/include/boost/config/compiler/metrowerks.hpp @@ -36,7 +36,7 @@ # define BOOST_NO_SFINAE # endif -# if(__MWERKS__ <= 0x3201) // 9.2 +# if(__MWERKS__ <= 0x3202) // 9.2 # define BOOST_NO_MEMBER_TEMPLATE_FRIENDS # endif @@ -56,7 +56,7 @@ # define BOOST_COMPILER_VERSION 8.2 # elif __MWERKS__ == 0x3003 # define BOOST_COMPILER_VERSION 8.3 -# elif __MWERKS__ == 0x3201 +# elif __MWERKS__ == 0x3202 # define BOOST_COMPILER_VERSION 9.2 # else # define BOOST_COMPILER_VERSION __MWERKS__ @@ -72,7 +72,7 @@ #endif // // last known and checked version: -#if (__MWERKS__ > 0x3201) +#if (__MWERKS__ > 0x3202) # if defined(BOOST_ASSERT_CONFIG) # error "Unknown compiler version - please run the configure tests and report the results" # endif