$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r59657 - sandbox/msm/libs/msm/doc
From: christophe.j.henry_at_[hidden]
Date: 2010-02-12 08:10:18
Author: chenry
Date: 2010-02-12 08:10:17 EST (Fri, 12 Feb 2010)
New Revision: 59657
URL: http://svn.boost.org/trac/boost/changeset/59657
Log:
fix
Text files modified: 
   sandbox/msm/libs/msm/doc/CompositeTutorialEuml.cpp |     4 ++--                                    
   1 files changed, 2 insertions(+), 2 deletions(-)
Modified: sandbox/msm/libs/msm/doc/CompositeTutorialEuml.cpp
==============================================================================
--- sandbox/msm/libs/msm/doc/CompositeTutorialEuml.cpp	(original)
+++ sandbox/msm/libs/msm/doc/CompositeTutorialEuml.cpp	2010-02-12 08:10:17 EST (Fri, 12 Feb 2010)
@@ -53,7 +53,7 @@
 
     // Playing is now a state machine itself.
 
-    // It has 3 substates
+    // It has 5 substates
     typedef BOOST_TYPEOF(build_state( Song1_Entry(),Song1_Exit() )) Song1;
 
     typedef BOOST_TYPEOF(build_state( Song2_Entry(),Song2_Exit() )) Song2;
@@ -79,7 +79,7 @@
 #ifndef BOOST_MSVC
     // create a state machine "on the fly" for Playing
     typedef BOOST_TYPEOF(build_sm(  playing_transition_table(), //STT
-                                    init_ << Song1() // Init State
+                                    init_ << Song1() << Region2State1() // Init State
                                     )) Playing_;
 #else
     // but this definition is ok