Leonid Stryzhevskyi
Leonid Stryzhevskyi
Hello @waghanza , Thank you for invitation! Once I prepare test project I'll send you a PR. Regards, Leonid
Hello @waghanza , Sorry for being inactive lately. But be sure that this task is in my pool. I will get back to it. Regards, Leonid
Hey @KaungZawHtet , At the moment no progress so far. Please feel free to contribute if you have time and/or inspiration - I'll provide all the necessary assistance and help....
Hey @beniz , Your code looks good. Most probably it's on oatpp side. I'll take a closer look.
Hey @beniz , Yes, at this point it looks like a `libz` issue. I'm filing an issue in oatpp to investigate possible fixes. It might take a while
Hello @beuschl , You can find examples in oatpp tests here - https://github.com/oatpp/oatpp/blob/master/test/oatpp/web/app/Client.hpp#L67 ```cpp API_CALL("GET", "default-basic-authorization", defaultBasicAuthorization, AUTHORIZATION_BASIC(String, authString)) API_CALL("GET", "default-basic-authorization", defaultBasicAuthorizationWithoutHeader) API_CALL("GET", "basic-authorization", customBasicAuthorization, AUTHORIZATION_BASIC(String, authString)) API_CALL("GET", "basic-authorization", customBasicAuthorizationWithoutHeader)...
This is an interesting suggestion. Let's consider it for `1.4.0`
It seems to be the MSVC issue - the max allowed number of parameters in one macro is `127` And the way [OATPP_MACRO_NUM_ARGS](https://github.com/oatpp/oatpp/blob/master/src/oatpp/core/macro/basic.hpp#L39) is implemented we can count only half...
As a workaround, to add a large number of enum values - you can manually add enum metadata. For this, you can do the following: Instead of ```cpp ENUM(MyEnum0, v_int32,...
@bamkrs My last comment was a bit confusing. Here is the more detailed explanation: Currently, the `OATPP_MACRO_NUM_ARGS` macro is limited to the max `63` parameters - on all platforms. But...