aboutsummaryrefslogtreecommitdiff
path: root/src/3rdParty/lua/lobject.h
diff options
context:
space:
mode:
authorLi Jin <dragon-fly@qq.com>2021-11-02 11:17:58 +0800
committerLi Jin <dragon-fly@qq.com>2021-11-02 11:17:58 +0800
commit827c3736f357e09168fc108e8e740c6425d37d9b (patch)
tree259f977bf7f4ebe0e397fe5e1b74e7fbb1b75e8e /src/3rdParty/lua/lobject.h
parentaed806476fe50899c0f01750175531ac41267b9d (diff)
downloadyuescript-827c3736f357e09168fc108e8e740c6425d37d9b.tar.gz
yuescript-827c3736f357e09168fc108e8e740c6425d37d9b.tar.bz2
yuescript-827c3736f357e09168fc108e8e740c6425d37d9b.zip
fix a wrong code generating issue, update builtin Lua.
Diffstat (limited to 'src/3rdParty/lua/lobject.h')
-rw-r--r--src/3rdParty/lua/lobject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/3rdParty/lua/lobject.h b/src/3rdParty/lua/lobject.h
index a1b4554..0e05b3e 100644
--- a/src/3rdParty/lua/lobject.h
+++ b/src/3rdParty/lua/lobject.h
@@ -68,7 +68,7 @@ typedef struct TValue {
68 68
69 69
70#define val_(o) ((o)->value_) 70#define val_(o) ((o)->value_)
71#define valraw(o) (&val_(o)) 71#define valraw(o) (val_(o))
72 72
73 73
74/* raw type tag of a TValue */ 74/* raw type tag of a TValue */