summaryrefslogtreecommitdiff
path: root/boost/msm/front/state_machine_def.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/msm/front/state_machine_def.hpp')
-rw-r--r--boost/msm/front/state_machine_def.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/boost/msm/front/state_machine_def.hpp b/boost/msm/front/state_machine_def.hpp
index ca72dd09ff..f890a983a3 100644
--- a/boost/msm/front/state_machine_def.hpp
+++ b/boost/msm/front/state_machine_def.hpp
@@ -31,6 +31,7 @@ struct state_machine_def : public boost::msm::front::detail::state_base<BaseSta
// tags
// default: no flag
typedef ::boost::mpl::vector0<> flag_list;
+ typedef ::boost::mpl::vector0<> internal_flag_list;
//default: no deferred events
typedef ::boost::mpl::vector0<> deferred_events;
// customization (message queue, exceptions)
@@ -197,7 +198,7 @@ struct state_machine_def : public boost::msm::front::detail::state_base<BaseSta
protected:
// Default no-transition handler. Can be replaced in the Derived SM class.
template <class FSM,class Event>
- void no_transition(Event const& ,FSM&, int state)
+ void no_transition(Event const& ,FSM&, int )
{
BOOST_ASSERT(false);
}