Niall Douglas
Niall Douglas
I actually have little objection to the macros in https://github.com/ned14/local-bind-cpp-library/blob/master/include/boost/config.hpp - something like BOOST_NOEXCEPT might as well be called BOOST_NOEXCEPT instead of something like EXPECTED_NOEXCEPT. I can't really think of...
Just to clear, I am referring to https://github.com/ned14/local-bind-cpp-library/blob/master/include/boost/config.hpp not boost/config.hpp. The former is about as minimal a Boost emulation header as could be written. The #ifdef BOOST_CONFIG_HPP is for detecting...
Sorry, I didn't explain well. If you compile expected with -Ilocal-bind-cpp-library/include, then it will find the fake boost/config.hpp and Boost support is not enabled. If you compile expected as part...
Sure. I have come up with a technique which lets external code choose which namespace a library is defined in, and combined with the local namespace bindings technique which lets...
Linux tends to not break kernel ABI, so you can probably safely hard code this stuff into a local header. LLFIO does a ton of that for Windows as we...
The OP's proposed added overload above doesn't work with how ASIO dispatches coroutines, which involves pumping a stack and with which each awaitable needs to register for things to work....
I tried that before as well, still an error. I found that if you go into the InfluxDB Admin page and create a new database, and then specify that database...
I just got everything up and running, pretty time series graphs. I used https://github.com/Jepsson/esphome-influxdb as a custom component for esphome, the microcontroller now sends sensor readings direct to influxdb no...
This branch is basically what I was going to do, so thanks for that. The only thing, theoretically, missing for me is CloneableSocket into() trait support for UtpStream.
BTW CloneableSocket really ought to be called UtpCloneableSocket :)