jaskij
jaskij
Fix #906
This ended up a bit bigger than I originally intended, but all the tests pass. What's added: - basic C++23 support wired: CI, `ETL_CONSTEXPR23`, CI runs for C++23 - CRC...
Working or some minor improvements, and wanted to test them using C++14. Forced it in CMakeLists.txt. This started erroring out in `platform.h` because `char8_t` is a reserved identifier in C++20....
Can `with_recorder()` be made public? As discussed on Discord, macros can be hard to use in some cases, and some developers strongly prefer plain functions. It would be desirable to...
- update the dependencies to latest versions - ~~also merged #73 because I needed a single version that does it all~~ - MSRV 1.75
Currently, the [documentation for the DNS OVH plugin](https://certbot-dns-ovh.readthedocs.io/en/stable/#credentials) lists a pretty wide set of required permissions for API keys: - `GET /domain/zone/` - `GET /domain/zone//*` - `PUT /domain/zone//*` - `POST...
Protobuf allows marking a field as deprecated ```proto int32 old_field = 6 [deprecated = true]; ``` With C23 introducing [standard attributes](https://en.cppreference.com/w/c/language/attributes) it would be nice to emit that attribute on...
While this does not solve #961 completely, it will make the compiler error when sized enums are supported. I experimented somewhat with adding a preprocessor check, but it seems that...
I wanted to take a stab at #972 , but the CI started [failing in a weird way](https://github.com/jaskij/nanopb/actions/runs/9989433058/job/27608115259) (despite being on my fork, that build should be from the same...
I'm trying to find the documentation for decoding strings when the type is set to FT_POINTER, and can not find anything. The only info I have been able to find...