From 4a7fd6f09f6b9132dc834a11a2c84812bcf92d92 Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Thu, 15 Mar 2007 19:51:39 +0000 Subject: [PATCH] Only check rvalue_refs option in CodeWarrior releases after 9.5 [SVN r37193] --- include/boost/config/compiler/metrowerks.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/config/compiler/metrowerks.hpp b/include/boost/config/compiler/metrowerks.hpp index 45d5d7e1..2b60b56f 100644 --- a/include/boost/config/compiler/metrowerks.hpp +++ b/include/boost/config/compiler/metrowerks.hpp @@ -83,7 +83,7 @@ // // C++0x features // -#if __option(rvalue_refs) +#if __MWERKS__ > 0x3206 && __option(rvalue_refs) # define BOOST_HAS_RVALUE_REFS #endif