Adrien Béraud
Adrien Béraud
Any update ? `data()` provides access to the native type but there is no clean/official way to convert from a native address type to an asio endpoint. I've seen so...
Thanks :) We ended up using a similar approach: ```cmake if (TARGET yaml-cpp) target_link_libraries(${PROJECT_NAME} PRIVATE yaml-cpp) else() target_link_libraries(${PROJECT_NAME} PRIVATE yaml-cpp::yaml-cpp) endif() ``` This should probably documented somewhere.
Not sure why the support for `File` was removed? It's an old API that is very widely used and not deprecated. It didn't prevent adding support for `Path` in any...
GCC is now moving to C++17 by default, and C++20/22 include additional support for `std::string_view`. This feature would be great to improve performance and code readability! Also simply to be...
first step here: https://github.com/open-source-parsers/jsoncpp/pull/1397