aboutsummaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
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