2
0
mirror of https://github.com/boostorg/msm.git synced 2026-02-18 02:02:16 +00:00

fixed errors reported by clang

[SVN r62680]
This commit is contained in:
Christophe Henry
2010-06-09 18:07:44 +00:00
parent 4c0d21ae47
commit f9058450bd

View File

@@ -1445,7 +1445,7 @@ private:
{
for (int i=0; i<nr_regions::value;++i)
{
no_transition(evt,*this,this->m_states[i]);
this->no_transition(evt,*this,this->m_states[i]);
}
}
return handled;
@@ -1530,7 +1530,7 @@ private:
}
static bool forward(library_sm& fsm)
{
return ::boost::fusion::at_key<StateType>(fsm.m_substate_list).is_flag_active<Flag>();
return ::boost::fusion::at_key<StateType>(fsm.m_substate_list).template is_flag_active<Flag>();
}
};
template <class Flag>