summaryrefslogtreecommitdiff
path: root/boost/msm/back/favor_compile_time.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/msm/back/favor_compile_time.hpp')
-rw-r--r--boost/msm/back/favor_compile_time.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/boost/msm/back/favor_compile_time.hpp b/boost/msm/back/favor_compile_time.hpp
index 74f40019bd..c19b5f4be5 100644
--- a/boost/msm/back/favor_compile_time.hpp
+++ b/boost/msm/back/favor_compile_time.hpp
@@ -38,7 +38,8 @@ struct process_any_event_helper
if ( ! finished && ::boost::any_cast<Event>(&any_event)!=0)
{
finished = true;
- res = self->process_event(::boost::any_cast<Event>(any_event));
+ res = self->process_event_internal(::boost::any_cast<Event>(any_event),false);
+
}
}
private: