$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r64179 - in branches/release/libs/statechart: . doc
From: ahd6974-boostorg_at_[hidden]
Date: 2010-07-19 17:25:58
Author: andreas_huber69
Date: 2010-07-19 17:25:58 EDT (Mon, 19 Jul 2010)
New Revision: 64179
URL: http://svn.boost.org/trac/boost/changeset/64179
Log:
Merged doc bug fix from trunk to branch.
Properties modified: 
   branches/release/libs/statechart/   (props changed)
Text files modified: 
   branches/release/libs/statechart/doc/rationale.html |     6 ++----                                  
   1 files changed, 2 insertions(+), 4 deletions(-)
Modified: branches/release/libs/statechart/doc/rationale.html
==============================================================================
--- branches/release/libs/statechart/doc/rationale.html	(original)
+++ branches/release/libs/statechart/doc/rationale.html	2010-07-19 17:25:58 EDT (Mon, 19 Jul 2010)
@@ -466,11 +466,9 @@
 
 // universal choice point base class template
 template< class MostDerived, class Context >
-struct choice_point : sc::state< MostDerived, Context, 
-  sc::custom_reaction< make_choice > >
+struct choice_point : sc::state< MostDerived, Context >
 {
-  typedef sc::state< MostDerived, Context, 
-    sc::custom_reaction< make_choice > > base_type;
+  typedef sc::state< MostDerived, Context > base_type;
   typedef typename base_type::my_context my_context;
   typedef choice_point my_base;