Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r53899 - trunk/boost/spirit/home/phoenix/core
From: frabar666_at_[hidden]
Date: 2009-06-14 05:07:14


Author: fbarel
Date: 2009-06-14 05:07:14 EDT (Sun, 14 Jun 2009)
New Revision: 53899
URL: http://svn.boost.org/trac/boost/changeset/53899

Log:
Phoenix: define or check FUSION_MAX_VECTOR_SIZE, not FUSION_MAX_TUPLE_SIZE
Text files modified:
   trunk/boost/spirit/home/phoenix/core/limits.hpp | 10 +++++-----
   1 files changed, 5 insertions(+), 5 deletions(-)

Modified: trunk/boost/spirit/home/phoenix/core/limits.hpp
==============================================================================
--- trunk/boost/spirit/home/phoenix/core/limits.hpp (original)
+++ trunk/boost/spirit/home/phoenix/core/limits.hpp 2009-06-14 05:07:14 EDT (Sun, 14 Jun 2009)
@@ -62,14 +62,14 @@
 #endif
 
 
-#if !defined(FUSION_MAX_TUPLE_SIZE)
-# define FUSION_MAX_TUPLE_SIZE PHOENIX_LIMIT
-#elif (FUSION_MAX_TUPLE_SIZE < PHOENIX_LIMIT)
-# error "FUSION_MAX_TUPLE_SIZE is set too low"
+#if !defined(FUSION_MAX_VECTOR_SIZE)
+# define FUSION_MAX_VECTOR_SIZE PHOENIX_LIMIT
+#elif (FUSION_MAX_VECTOR_SIZE < PHOENIX_LIMIT)
+# error "FUSION_MAX_VECTOR_SIZE < PHOENIX_LIMIT"
 #endif
 
 // this include will bring in mpl::vectorN and
-// fusion::tupleN where N is PHOENIX_ACTOR_LIMIT
+// fusion::vectorN where N is PHOENIX_LIMIT
 #include <boost/fusion/include/vector.hpp>
 
 // for some reason, this must be included now to make


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk