Request
Description
Currently the following compileflags are added no matter the cmake config -Wall -Wextra -Wpedantic -Werror which can fail the compilation if a member is not used and might be too excessive for a release build.
Why
To not clutter the codebase with [[maybe_unused]] decorators to allow for compiling with both configs
Request
Description
Currently the following compileflags are added no matter the cmake config
-Wall-Wextra-Wpedantic-Werrorwhich can fail the compilation if a member is not used and might be too excessive for a release build.Why
To not clutter the codebase with
[[maybe_unused]]decorators to allow for compiling with both configs