aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2021-09-15 11:18:41 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2021-09-15 11:18:41 -0300
commit2ff34717227b8046b0fdcb96206f11f5e888664e (patch)
tree112f054406eaa82363716882b4300d4ff98ab2ef /makefile
parent9db4bfed6bb9d5828c99c0f24749eedf54d70cc2 (diff)
downloadlua-2ff34717227b8046b0fdcb96206f11f5e888664e.tar.gz
lua-2ff34717227b8046b0fdcb96206f11f5e888664e.tar.bz2
lua-2ff34717227b8046b0fdcb96206f11f5e888664e.zip
Using 'inline' in some functions
According to ISO C, "making a function an inline function suggests that calls to the function be as fast as possible." (Not available in C89.)
Diffstat (limited to 'makefile')
-rw-r--r--makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/makefile b/makefile
index 7cfcbfe1..d46e650c 100644
--- a/makefile
+++ b/makefile
@@ -14,6 +14,7 @@ CWARNSCPP= \
14 -Wredundant-decls \ 14 -Wredundant-decls \
15 -Wdisabled-optimization \ 15 -Wdisabled-optimization \
16 -Wdouble-promotion \ 16 -Wdouble-promotion \
17 -Wmissing-declarations \
17 # the next warnings might be useful sometimes, 18 # the next warnings might be useful sometimes,
18 # but usually they generate too much noise 19 # but usually they generate too much noise
19 # -Werror \ 20 # -Werror \