AE1020
AE1020
API entry points that operated on generic handles were taking the `uv_handle_t*` type. This is a base class with no concrete instances, so clients would -always- have to cast the...
This triggers a GitHub Action that gets the dependencies for avr-gcc (and also freeglut) in order to run the `make` on Linux. After the make is complete, it runs the...
On the line that says: if(strategy >= LFS_ZERO && strategy = 0 is always true [-Werror=type-limits] It's not a terribly useful warning here. But it is in some cases informative...
Functions that can return errors must be handled. Using the `?` operator will bubble up those errors. The case of making a closure to pass to `onload` could not use...
I'm building libuv in a custom build environment (no CMake available) so having to do some manual adjustment of warnings, as I have them turned up fairly high. But this...