From d61b0c60287c38008d312ddd11724a15b1737f7b Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 26 May 2022 15:14:54 -0300 Subject: More checks and documentation for uses of EXTRA_STACK --- lobject.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lobject.h') 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 { lua_CFunction f; /* light C functions */ lua_Integer i; /* integer numbers */ lua_Number n; /* float numbers */ + /* not used, but may avoid warnings for uninitialized value */ + lu_byte ub; } Value; -- cgit v1.2.3-55-g6feb