Peter A. Jonsson
Peter A. Jonsson
The initial performance problems in the action have been fixed, so there is no longer any room for improvement there. The `docker pull` is really quick, so until `docker load`...
I find the comment "version is optional" right after `clangFormat('10.0.1')` in `plugin-gradle/README.md` misleading, removing the version makes it default to a clang-format that is too old for Ubuntu 22.04 LTS...
@nedtwigg what is the recommended way of handling clang-format for both macOS and Linux? The clang-format binary has a major version number appended at the end on Ubuntu (clang-format-15), but...
@JelleZijlstra I realize I'm 2 years late, but are you aware of units-of-measure in F# (https://learn.microsoft.com/en-us/dotnet/fsharp/language-reference/units-of-measure)? "Types for Units-of-Measure: Theory and Practice" from Central European Functional Programming School 2009 might...
I think picocli is a fabulous library, but I'm just a happy user, not the library author that the invitation is targeted at. (And I think it makes sense that...
> Let's start with the dependency updates and underscore->lodash swap for the first push. @AdamPflug I don't think anyone is asking for a 2.0, but there is a dependency update...
@arurke there's a `CC_CONF_DEPRECATED(msg)` in cc-gcc.h.
Unless I'm confusing PRs: I think this PR got stuck because different batches of the hardware has two behaviors for the same revision number, so Contiki-NG behaves correctly for some...
Doesn't this work fine if you use `char *` as upstream (instead of `void *` and `uint8_t *`)? As a bonus, that should avoid strict aliasing issues.
My point with `char *` was just to remove the strict aliasing issues. Upstream has also changed the signature to `void * _sbrk (ptrdiff_t incr)`, so the function gets a...