Closed rcombs closed 3 years ago
Hi @rcombs,
This issue should be fixed by e382784f5d1ccc055a348a6bb103f72c0bade385, thanks @mnaczk! Please reopen this issue if you find that the problem is still there, thank you!
That commit fixes the specific warning I was getting, but doesn't fix the general issue of warnings from new compilers causing errors for no good reason.
This can cause issues when different versions of compilers include different warnings in
-Wall
or-Wextra
, or vary the semantics of existing ones. For instance, on my particular build of clang 11.0.1, I get this warning:Which requires me to patch out the CMake code setting
-Werror
. There's not a lot of value to-Werror
outside of development, so could this be removed (or could an option be added to disable it)?