$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r66808 - sandbox/SOC/2010/phoenix3/boost/phoenix/core
From: thom.heller_at_[hidden]
Date: 2010-11-28 06:14:52
Author: theller
Date: 2010-11-28 06:14:51 EST (Sun, 28 Nov 2010)
New Revision: 66808
URL: http://svn.boost.org/trac/boost/changeset/66808
Log:
fixed mpl oddity
Text files modified: 
   sandbox/SOC/2010/phoenix3/boost/phoenix/core/limits.hpp |     4 ++--                                    
   1 files changed, 2 insertions(+), 2 deletions(-)
Modified: sandbox/SOC/2010/phoenix3/boost/phoenix/core/limits.hpp
==============================================================================
--- sandbox/SOC/2010/phoenix3/boost/phoenix/core/limits.hpp	(original)
+++ sandbox/SOC/2010/phoenix3/boost/phoenix/core/limits.hpp	2010-11-28 06:14:51 EST (Sun, 28 Nov 2010)
@@ -98,11 +98,11 @@
 #endif
 
 #if !defined(BOOST_PROTO_MAX_ARITY)
-#define BOOST_PROTO_MAX_ARITY BOOST_PP_INC(PHOENIX_COMPOSITE_LIMIT)
+#define BOOST_PROTO_MAX_ARITY PHOENIX_COMPOSITE_LIMIT
 #ifdef BOOST_MPL_LIMIT_METAFUNCTION_ARITY
 #undef BOOST_MPL_LIMIT_METAFUNCTION_ARITY
 #endif
-#define BOOST_MPL_LIMIT_METAFUNCTION_ARITY BOOST_PP_INC(BOOST_PROTO_MAX_ARITY)
+#define BOOST_MPL_LIMIT_METAFUNCTION_ARITY BOOST_PROTO_MAX_ARITY
 #elif (BOOST_PROTO_MAX_ARITY < BOOST_PP_INC(PHOENIX_COMPOSE_LIMIT))
 #error "BOOST_PROTO_MAX_ARITY < PHOENIX_COMPOSE_LIMIT + 1"
 #endif