Gudmundur Adalsteinsson
Gudmundur Adalsteinsson
# Issue description Binding to a too large port results in overflow without errors. # Environment * libzmq version (commit hash if unreleased): 4.3.3 * OS: Ubuntu 16 # Minimal...
Here are a few ideas for changes to be made for (potentially breaking) cppzmq v5. 1. Require C++11 standard support, but still support gcc 4.7 and later with partial C++11...
See https://github.com/zeromq/libzmq/issues/3927.
I have a json that needs to be manipulated and maintaining the order of the keys in the object is really imported (even though it is supposed to be unordered...
This fails with an error (using boost 1.80): ```c++ asio::ioc_context ioc; asio::awaitable test() { auto promise = asio::co_spawn(ioc, []() -> asio::awaitable { co_return 1; }, asio::experimental::use_promise); co_await promise.async_wait(asio::deferred); } ```...
Since 1.81 this no longer compiles: ```c++ struct customer { int id; std::string name; std::vector vec }; void tag_invoke( value_from_tag, value& jv, customer const& c ) { jv = {...
This is for inserting values at any position in the object preserving order of all elements (at the cost of linear complexity). Part 2/2 of https://github.com/boostorg/json/issues/748. This does not have...
This allows us use `add_subdirectory(avcpp)` without overwriting the set standard (C++23 e.g.)
I am wondering when poller (and possibly other draft features) will go from draft to stable? It looks like it had been in draft for at least 5 years and...