Erik Zenker

Results 49 comments of Erik Zenker

If your action is finally calling itself you end up in an endless recursion. Which builds up a huge call stack. You could decouple action call and execution via a...

@rezahousseini hasn't process_event this semantic? But if you call it in a recursion loop then there is nothing sml can do about, or do I oversee something?

Did you try to hide the state machine behind a pointer (pimpl pattern)? By that you can hide the Implementation and dont need to compile the state machine when nothing...

@dingari your answer is just a Google search away

It is a known asio ssl issue. See here: https://github.com/boostorg/asio/issues/100 If you are interested in the asio code see here: https://github.com/darwin/boost/blob/master/boost/asio/ssl/detail/openssl_stream_service.hpp#L378-L380

To fix this we might introduce a buffer type into the config class so the user can provide its own flat buffer. like it is done on the mentioned work...

How can I access the the extent of a view ?

Furthermore, do you have a idea how we could use the view concept in a useful example ?

I can only guess with which kind of arguments I need to feed the functions `extens::getWidth(arg)` etc. The documentation tells me that `arg` needs to be of the type `TExtent`...