Alex Robenko

Results 46 comments of Alex Robenko

Thanks for your work, I'll take a closer look at it within next couple of weeks.

When resolving #19, I've taken a look at definition of [std::function::operator()](https://en.cppreference.com/w/cpp/utility/functional/function/operator()). It is defined to be "const", but at the same time it allows passed object to modify its state....

Hi @akowalew (what's you first name by the way? How should I address you?), Most of the work for this library was inspired by Boost.Asio and I kind of replicated...

OK, thanks. I'll consider adding something like this in the future. As I have mentioned already in other tickets, I don't have much time to spend on this project and...

I just pushed a fix to "hotfixes" branch. Please try it and let me know whether it works for you.

Sorry, I haven't really touched this project for 4-5 years and I don't know when I will come around to test latest compilers and fix all the problems. If you...

That's an arguable point. I introduced "at" member function just for interface completeness in case someone would want to replace usage of say boost::circular_buffer with my StaticQueue (or vice versa)...

The problem seems to be in your environment. Some paths start with **/cygdrive/c/Users/consu_000/** while others with **/home/consu_000**. I'm not sure what component to blame. Maybe it's CMake that generates paths...

If you have native compilation of cmake and gcc (mingw) for Windows you may try to use it in native environment (not in Cygwin) with "nmake" instead of "make". >...

The major reason for the deviation is to simplify the implementation and support low memory consumption when compiling client for bare-metal application (which doesn't use dynamic memory allocation). To the...