$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r71258 - trunk/boost/msm/front/euml
From: christophe.j.henry_at_[hidden]
Date: 2011-04-14 15:40:55
Author: chenry
Date: 2011-04-14 15:40:54 EDT (Thu, 14 Apr 2011)
New Revision: 71258
URL: http://svn.boost.org/trac/boost/changeset/71258
Log:
fixed bug (incorrect use of proto::_child)
Text files modified: 
   trunk/boost/msm/front/euml/guard_grammar.hpp |     2 +-                                      
   trunk/boost/msm/front/euml/state_grammar.hpp |     2 +-                                      
   2 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/boost/msm/front/euml/guard_grammar.hpp
==============================================================================
--- trunk/boost/msm/front/euml/guard_grammar.hpp	(original)
+++ trunk/boost/msm/front/euml/guard_grammar.hpp	2011-04-14 15:40:54 EDT (Thu, 14 Apr 2011)
@@ -342,7 +342,7 @@
             >,
         proto::when<
             proto::terminal<proto::_>,
-            proto::_child
+            proto::_value
             >
     >
 {};
Modified: trunk/boost/msm/front/euml/state_grammar.hpp
==============================================================================
--- trunk/boost/msm/front/euml/state_grammar.hpp	(original)
+++ trunk/boost/msm/front/euml/state_grammar.hpp	2011-04-14 15:40:54 EDT (Thu, 14 Apr 2011)
@@ -504,7 +504,7 @@
             >,
         proto::when<
             proto::terminal<proto::_>,
-            proto::_child
+            proto::_value
             >
     >
 {};