aboutsummaryrefslogtreecommitdiff
path: root/src/3rdParty/lua/lobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdParty/lua/lobject.h')
-rw-r--r--src/3rdParty/lua/lobject.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/3rdParty/lua/lobject.h b/src/3rdParty/lua/lobject.h
index 0e05b3e..77cc606 100644
--- a/src/3rdParty/lua/lobject.h
+++ b/src/3rdParty/lua/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