From 0acd55898d0aaae8dbc14c8a1bc1e3bdffc8701b Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Sat, 27 Jul 2024 13:32:59 -0300 Subject: Added gcc option '-Wconversion' No warnings for standard numerical types. Still pending alternative numerical types. --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'makefile') diff --git a/makefile b/makefile index 58b12f8e..b37fdb28 100644 --- a/makefile +++ b/makefile @@ -14,11 +14,11 @@ CWARNSCPP= \ -Wdisabled-optimization \ -Wdouble-promotion \ -Wmissing-declarations \ + -Wconversion \ # the next warnings might be useful sometimes, # but usually they generate too much noise # -Werror \ # -pedantic # warns if we use jump tables \ - # -Wconversion \ # -Wsign-conversion \ # -Wstrict-overflow=2 \ # -Wformat=2 \ -- cgit v1.2.3-55-g6feb