Przeglądaj źródła

Details

Added two warnings to the makefile.
Roberto Ierusalimschy 8 miesięcy temu
rodzic
commit
62afbc6bfc
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      makefile

+ 2 - 2
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 \