[Improve] ./build.sh
:CXXFLAGS_ANALYSIS
to remove -Wno-*
, include -Wpedantic -Werror
in addition to -Wall -Wextra
#27
Labels
Milestone
Rationale: most of what `-Wall -Wextra -Wpedantic warn about are actual issues or, if solved, will assist with ports to new languages (the possible codeflows which pass are a strict subset of those which do not pass, and a strict subset is less effort to port to new languages, thus this assists with issues #3 + #18 + #19 + #20)
Background: 64ca540 introduced
-Wall -Wextra
(which won't./build.sh
with-Werror
without lots of-Wno-*
rules.)Since this, lots of commits which progress towards the above issues have improved this (but still can't
./build.sh
with-Werror
without-Wno
.)The text was updated successfully, but these errors were encountered: