Fabian Sauter
Fabian Sauter
I'm unable to reproduce your errors since there are multiple errors with your install script: 1. I guess ```cmake FetchContent_Populate(cpr) set(CPR_ENABLE_SSL ON) endif() ``` has to be: ```cmake FetchContent_Populate(cpr) set(CPR_ENABLE_SSL...
@cleaton thanks for contributing! I will try to review it over the weekend.
Please also add a MR here for documentation: https://github.com/libcpr/docs
@cleaton thanks again for contributing this (again). Is there a specific reason you are not following up with it so we can go ahead and merge it?
Perfect, thanks! Now I'm on vacation. I will try to review it next week.
cppcheck is failing and it looks like there is a race condition with one test on windows? ``` [ RUN ] MultipleGetTests.PoolAsyncGetMultipleTest D:\a\cpr\cpr\test\connection_pool_tests.cpp(55): error: Expected equality of these values: std::string{"Hello...
@cleaton thanks for taking care of this. Now we can merge it.
Would be interesting but right now there is now plan to add this functionality. But I would be more than happy to accept a PR adding this functionality.
@GitSparTV I like this approach. Would you like to create a PR for this?
@DanielRe1 thanks for reporting! Sadly there is no way right now to clear the underlying `std::variant content_{std::monostate{}};` object back to `std::monostate{}`. But what you could try is: ```c++ session.SetBody(cpr::Body{}); ```...