$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r64153 - sandbox/SOC/2010/phoenix3/boost/phoenix/core
From: thom.heller_at_[hidden]
Date: 2010-07-19 06:18:48
Author: theller
Date: 2010-07-19 06:18:48 EDT (Mon, 19 Jul 2010)
New Revision: 64153
URL: http://svn.boost.org/trac/boost/changeset/64153
Log:
minor error fix
Text files modified: 
   sandbox/SOC/2010/phoenix3/boost/phoenix/core/meta_grammar.hpp |    12 ++++++------                            
   1 files changed, 6 insertions(+), 6 deletions(-)
Modified: sandbox/SOC/2010/phoenix3/boost/phoenix/core/meta_grammar.hpp
==============================================================================
--- sandbox/SOC/2010/phoenix3/boost/phoenix/core/meta_grammar.hpp	(original)
+++ sandbox/SOC/2010/phoenix3/boost/phoenix/core/meta_grammar.hpp	2010-07-19 06:18:48 EDT (Mon, 19 Jul 2010)
@@ -32,6 +32,12 @@
     eval_grammar const eval = eval_grammar();
 
     ////////////////////////////////////////////////////////////////////////////
+    // A dummy terminal that, when evaluated, returns the current state.
+    ////////////////////////////////////////////////////////////////////////////
+    struct env
+    {};
+
+    ////////////////////////////////////////////////////////////////////////////
     // Open ended grammar dispatch allows us to extend the grammar
     // without modifying the code
     ////////////////////////////////////////////////////////////////////////////
@@ -47,12 +53,6 @@
     };
 
     ////////////////////////////////////////////////////////////////////////////
-    // A dummy terminal that, when evaluated, returns the current state.
-    ////////////////////////////////////////////////////////////////////////////
-    struct env
-    {};
-
-    ////////////////////////////////////////////////////////////////////////////
     // wrapper for a Fusion extension evaluator function. Keep this POD.
     ////////////////////////////////////////////////////////////////////////////
     template <class Fun>