diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2022-05-26 15:14:54 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2022-05-26 15:14:54 -0300 |
commit | d61b0c60287c38008d312ddd11724a15b1737f7b (patch) | |
tree | cbba214daaf712ac78547d136aa24b12d1308294 /lobject.h | |
parent | 196bb94d66e727e0aec053a0276c3ad701500762 (diff) | |
download | lua-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.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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 | ||