$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r53897 - trunk/boost/spirit/home/phoenix/scope
From: frabar666_at_[hidden]
Date: 2009-06-14 04:52:45
Author: fbarel
Date: 2009-06-14 04:52:45 EDT (Sun, 14 Jun 2009)
New Revision: 53897
URL: http://svn.boost.org/trac/boost/changeset/53897
Log:
Phoenix: use PHOENIX_DYNAMIC_LIMIT instead of PHOENIX_LIMIT in scope/dynamic.hpp
Text files modified: 
   trunk/boost/spirit/home/phoenix/scope/dynamic.hpp |     8 ++++----                                
   1 files changed, 4 insertions(+), 4 deletions(-)
Modified: trunk/boost/spirit/home/phoenix/scope/dynamic.hpp
==============================================================================
--- trunk/boost/spirit/home/phoenix/scope/dynamic.hpp	(original)
+++ trunk/boost/spirit/home/phoenix/scope/dynamic.hpp	2009-06-14 04:52:45 EDT (Sun, 14 Jun 2009)
@@ -102,17 +102,17 @@
         DynamicScope const& scope;
     };
 
-    template <BOOST_PP_ENUM_PARAMS_WITH_A_DEFAULT(PHOENIX_LIMIT, typename T, void_)>
+    template <BOOST_PP_ENUM_PARAMS_WITH_A_DEFAULT(PHOENIX_DYNAMIC_LIMIT, typename T, void_)>
     struct dynamic : noncopyable
     {
-        typedef fusion::vector<BOOST_PP_ENUM_PARAMS(PHOENIX_LIMIT, T)> tuple_type;
-        typedef dynamic<BOOST_PP_ENUM_PARAMS(PHOENIX_LIMIT, T)> self_type;
+        typedef fusion::vector<BOOST_PP_ENUM_PARAMS(PHOENIX_DYNAMIC_LIMIT, T)> tuple_type;
+        typedef dynamic<BOOST_PP_ENUM_PARAMS(PHOENIX_DYNAMIC_LIMIT, T)> self_type;
         typedef dynamic_frame<self_type> dynamic_frame_type;
 
         dynamic()
             : frame(0) {}
 
-        BOOST_PP_REPEAT(PHOENIX_LIMIT, PHOENIX_DYNAMIC_MEMBER, _)
+        BOOST_PP_REPEAT(PHOENIX_DYNAMIC_LIMIT, PHOENIX_DYNAMIC_MEMBER, _)
 
     private: