feelinfine

Results 4 comments of feelinfine

> > > This still doesn't seem to work. Is there any workaround for this? Or is it intended behavior? You can always make the 'process_event' function return bool again...

> In addition, the return type is void not bool. That's right. The 'process_event' function looks like this ```c++ template void process_event(const TEvent &event) { aux::get(sub_sms_).process_event(event, deps_, sub_sms_); } template...

@redboltz Sorry for my bad english knowledge) For me the main problem was to handle invalid transitions from states, which are present in transition table. But now I see that...

> As far as I know, there is no `no_transition` handler possible with the sml. ```c++ #include #include "sml.hpp" namespace sml = boost::sml; struct ev1 {}; struct ev2 {}; auto...