NRK
NRK
If you're getting conflicts, then you'll have to resolve them manually. Try `curl -L "https://github.com/dudik/herbe/pull/25.patch" | git am --reject` , then manually solve the conflicts. Once done, run `git am...
> To make things worse, HSL, for example, uses decimals, i.e floating point math Most HSL picker/wheel I see don't allow for decimals because no one really cares about `8.0`...
GPLv3 is a fine choice for end user facing application. It gives people incentive to not make proprietary forks. As for effectiveness, I've seen *plenty* of proprietary developers steer away...
> but many modern compilers issue this as a warning or an error even without "-Wshadow" option. If a compiler is unable to compile valid C code then that compiler...
> @N-R-K This is a perfectly reasonable request. Sure, I didn't mean to come off as dismissive of the issue. I was more curious about which compiler errors out due...
The entire point of single header libraries is so that they can be embedded directly into the project. Trying to package a single header lib is kinda nonsense. > So...
> I'm not a big fan of using memset() because it's ugly, but I'm not really a big fan of ZERO_INIT because it introduces the #ifdef. I mean, I understand...
Updated to using memset(), compiles fine on both gcc and clang without any warnings with `-Wall -Wextra -Wmissing-field-initializers`.
> There are also several places where such initializer is used: > > * stb_ds.h in line [764](https://github.com/nothings/stb/blob/af1a5bc352164740c1cc1354942b1c6b72eacb8a/stb_ds.h#L764) (also, I don't know for what purpose this variable is used here)....