Enable all compiler warnings and solve them (GCC, Clang, MSVC)
Opened this issue ยท 0 comments
viferga commented
๐ Feature
In our compiler infrastructure we already enable many warnings but it will be interesting to enable all of them and solve them. Many are pretty easy to solve like -Wshadow, which is solved by changing the name of a variable for example.
Line 49 in cb8429f
Line 80 in cb8429f
Line 89 in cb8429f
Line 109 in cb8429f
This would improve the code quality, eventually if all of them are solved, we can also enable -Werror so any warning is treated as error and we improve the code quality.