aboutsummaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2022-05-26 15:14:54 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2022-05-26 15:14:54 -0300
commitd61b0c60287c38008d312ddd11724a15b1737f7b (patch)
treecbba214daaf712ac78547d136aa24b12d1308294 /lobject.h
parent196bb94d66e727e0aec053a0276c3ad701500762 (diff)
downloadlua-d61b0c60287c38008d312ddd11724a15b1737f7b.tar.gz
lua-d61b0c60287c38008d312ddd11724a15b1737f7b.tar.bz2
lua-d61b0c60287c38008d312ddd11724a15b1737f7b.zip
More checks and documentation for uses of EXTRA_STACK
Diffstat (limited to 'lobject.h')
-rw-r--r--lobject.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/lobject.h b/lobject.h
index 0e05b3e4..77cc606f 100644
--- a/lobject.h
+++ b/lobject.h
@@ -52,6 +52,8 @@ typedef union Value {
52 lua_CFunction f; /* light C functions */ 52 lua_CFunction f; /* light C functions */
53 lua_Integer i; /* integer numbers */ 53 lua_Integer i; /* integer numbers */
54 lua_Number n; /* float numbers */ 54 lua_Number n; /* float numbers */
55 /* not used, but may avoid warnings for uninitialized value */
56 lu_byte ub;
55} Value; 57} Value;
56 58
57 59