aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2025-01-14 16:24:46 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2025-01-14 16:24:46 -0300
commit3cdd49c94a8feed94853ba3a6adaa556fb34fd8d (patch)
tree1f552c966d1fb5f5c23e956e6d98679f02a558b3 /makefile
parent10e931da82268a9d190c17a9bdb9b1a4b48c2947 (diff)
downloadlua-3cdd49c94a8feed94853ba3a6adaa556fb34fd8d.tar.gz
lua-3cdd49c94a8feed94853ba3a6adaa556fb34fd8d.tar.bz2
lua-3cdd49c94a8feed94853ba3a6adaa556fb34fd8d.zip
Fixed conversion warnings from clang
Plus some other details. (Option '-Wuninitialized' was removed from the makefile because it is already enabled by -Wall.)
Diffstat (limited to 'makefile')
-rw-r--r--makefile1
1 files changed, 0 insertions, 1 deletions
diff --git a/makefile b/makefile
index 64dee501..8506e93c 100644
--- a/makefile
+++ b/makefile
@@ -15,7 +15,6 @@ CWARNSCPP= \
15 -Wdouble-promotion \ 15 -Wdouble-promotion \
16 -Wmissing-declarations \ 16 -Wmissing-declarations \
17 -Wconversion \ 17 -Wconversion \
18 -Wuninitialized \
19 -Wstrict-overflow=2 \ 18 -Wstrict-overflow=2 \
20 # the next warnings might be useful sometimes, 19 # the next warnings might be useful sometimes,
21 # but usually they generate too much noise 20 # but usually they generate too much noise