commit 62afbc6bfce222ebe745863131f952f6fce5eafb
parent 002beeebe79065e03dd9f531bee367e8459e3f64
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date: Fri, 29 Nov 2024 17:38:53 -0300
Details
Added two warnings to the makefile.
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/makefile b/makefile
@@ -15,12 +15,12 @@ CWARNSCPP= \
-Wdouble-promotion \
-Wmissing-declarations \
-Wconversion \
+ -Wuninitialized \
+ -Wstrict-overflow=2 \
# the next warnings might be useful sometimes,
# but usually they generate too much noise
# -Werror \
# -pedantic # warns if we use jump tables \
- # -Wsign-conversion \
- # -Wstrict-overflow=2 \
# -Wformat=2 \
# -Wcast-qual \