jaskij

Results 173 comments of jaskij

I came to open an issue to allow skipping patch version in `--min` and `--max`, from a brief look at `version-number`, it would do that. This is what I'm getting...

> It looks like `cargo doc` generates one entry for each possible [unit](https://docs.rs/uom/0.36.0/uom/si/pressure/index.html#structs) that can be used as the generic parameter to `ceil`, `fract`, ... Hmm... that sounds more like...

Explaining the pragmas: ```cpp #pragma GCC diagnostic push // store current diagnostics setup #pragma GCC diagnostic ignored "-Wc++20-compat" // disable C++20 compat warning // code goes here #pragma GCC diagnostic...

I went with the pragma approach because this is the only place which causes the error

Thank you for pointing that out, moved the diagnostics to their own file.

I missed the previous comment. Yes, the documentation is as bad as it was when I originally opened the issue. Please reopen.

Looking at the code, putting the size of the enum behind `#ifdef __cplusplus` is just plain wrong, as it would result in different ABI depending on whether the code is...

There is another option, although I do not know enough about nanopb's internals to say how viable it would be. Do not use `int_size` for enums, and introduce a new...

I believe this should be tested, to make sure there is no ABI breakage. #993 changes the CI to add tests on Ubuntu 24.04, which comes with GCC 14. That...

A good argument for Doxygen, or a different similar tool, is single source of truth. Poking around a little, you currently generate the API reference with Pandoc from a manually...