|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r59081 - sandbox/msm/boost/msm/front/detail
From: christophe.j.henry_at_[hidden]
Date: 2010-01-16 12:59:31
Author: chenry
Date: 2010-01-16 12:59:30 EST (Sat, 16 Jan 2010)
New Revision: 59081
URL: http://svn.boost.org/trac/boost/changeset/59081
Log:
minor fix
Text files modified:
sandbox/msm/boost/msm/front/detail/row2_helper.hpp | 16 ++++++++--------
1 files changed, 8 insertions(+), 8 deletions(-)
Modified: sandbox/msm/boost/msm/front/detail/row2_helper.hpp
==============================================================================
--- sandbox/msm/boost/msm/front/detail/row2_helper.hpp (original)
+++ sandbox/msm/boost/msm/front/detail/row2_helper.hpp 2010-01-16 12:59:30 EST (Sat, 16 Jan 2010)
@@ -25,15 +25,15 @@
>
struct row2_action_helper
{
- template <class FSM,class Event,class SourceState,class TargetState, class AllStates>
- static void call_helper(FSM&,Event const& evt,SourceState&,TargetState&,
+ template <class FSM,class Evt,class SourceState,class TargetState, class AllStates>
+ static void call_helper(FSM&,Evt const& evt,SourceState&,TargetState&,
AllStates& all_states,::boost::mpl::false_ const &)
{
// in this front-end, we don't need to know source and target states
( ::boost::fusion::at_key<CalledForAction>(all_states).*action)(evt);
}
- template <class FSM,class Event,class SourceState,class TargetState, class AllStates>
- static void call_helper(FSM& fsm,Event const& evt,SourceState&,TargetState&,AllStates&,
+ template <class FSM,class Evt,class SourceState,class TargetState, class AllStates>
+ static void call_helper(FSM& fsm,Evt const& evt,SourceState&,TargetState&,AllStates&,
::boost::mpl::true_ const &)
{
// in this front-end, we don't need to know source and target states
@@ -48,15 +48,15 @@
>
struct row2_guard_helper
{
- template <class FSM,class Event,class SourceState,class TargetState,class AllStates>
- static bool call_helper(FSM&,Event const& evt,SourceState&,TargetState&,
+ template <class FSM,class Evt,class SourceState,class TargetState,class AllStates>
+ static bool call_helper(FSM&,Evt const& evt,SourceState&,TargetState&,
AllStates& all_states, ::boost::mpl::false_ const &)
{
// in this front-end, we don't need to know source and target states
return ( ::boost::fusion::at_key<CalledForGuard>(all_states).*guard)(evt);
}
- template <class FSM,class Event,class SourceState,class TargetState,class AllStates>
- static bool call_helper(FSM& fsm,Event const& evt,SourceState&,TargetState&,
+ template <class FSM,class Evt,class SourceState,class TargetState,class AllStates>
+ static bool call_helper(FSM& fsm,Evt const& evt,SourceState&,TargetState&,
AllStates&,::boost::mpl::true_ const &)
{
// in this front-end, we don't need to know source and target states
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk