Simon Giesecke

Results 52 comments of Simon Giesecke

Sorry for getting back to this only now. I would still like to know if using EXCLUDE_FROM_ALL wouldn't allow to skip installing as well. Please edit the commits such that...

You can change commits, regardless of whether they were pushed or not. A guide is available here: https://git-scm.com/book/en/v2/Git-Tools-Rewriting-History#_changing_multiple When pushing, you need to add the `--force-with-lease` option (or an equivalent...

Could you please reformat the code to make it more readable, and use code sections as described in https://help.github.com/en/github/writing-on-github/creating-and-highlighting-code-blocks ?

@K0n63n You misinterpret the docs of zmq_msg_recv. The "shall be properly deallocated" part describes what the implementation of zmq_msg_recv shall do, not what the caller shall do.

We definitely lack good examples, so any contribution would be very welcome! While I implemented a ZAP server in the past and it was not too complex, doing that in...

Some comments: * Re `message_t::data`: we should probably `std::enable_if` it only when `T` is `std::is_pod::value` is `true`? But that still doesn't solve an issue with alignment. * Re alignment: that's...

> > > According to the docs tcp for pair is not suitable in some cases http://api.zeromq.org/4-3:zmq-socket but that may not be the case here. Sorry, my fault. You're actually...

Could you provide some example code? I am not sure what exactly it is you cannot do. Is it a syntactical issue, or doesn't it work as expected?

Thanks for your report. Note that for using cppzmq, you don't have to build it at all, it is a header only library. You need a libzmq library (static or...

Please provide a minimal example that reproduces the problem.