Emilian Cioca
Emilian Cioca
This is useful for projects which don't support installing, allowing them to depend on soloud with less integration friction. The default behavior of cmake generation is unchanged.
This manifested as very unexpected linker errors and the root cause was not obvious: `operator new(unsigned __int64)" (??2@YAPEAX_K@Z) already defined` A local writable file was getting knocked out of the...
The first `strlen()` call required that the `searchName` is iterated entirely, even if the following `strncmp()` would be able to early-out when the first characters don't match. The pre-calculated length...
This allows checking for JSON nodes without throwing exceptions. The specific use-case this was developed for is a game project with exceptions disabled, and JSON payloads to load from older...