diff options
author | Li Jin <dragon-fly@qq.com> | 2022-08-25 11:24:10 +0800 |
---|---|---|
committer | Li Jin <dragon-fly@qq.com> | 2022-08-26 10:10:19 +0800 |
commit | df85ad2e7f975026ca1e6bd84b26fff81c8d99c8 (patch) | |
tree | 2b9300041c291382b15da3c354de3640a1498c1b /src/3rdParty/lua/lobject.h | |
parent | 2f497477c984e576e9ba7e8f6cb92ee9f794e56b (diff) | |
download | yuescript-df85ad2e7f975026ca1e6bd84b26fff81c8d99c8.tar.gz yuescript-df85ad2e7f975026ca1e6bd84b26fff81c8d99c8.tar.bz2 yuescript-df85ad2e7f975026ca1e6bd84b26fff81c8d99c8.zip |
update to Lua 5.4.5.
Diffstat (limited to 'src/3rdParty/lua/lobject.h')
-rw-r--r-- | src/3rdParty/lua/lobject.h | 2 |
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 | ||