diff options
author | Li Jin <dragon-fly@qq.com> | 2021-08-17 23:09:27 +0800 |
---|---|---|
committer | Li Jin <dragon-fly@qq.com> | 2021-08-17 23:09:27 +0800 |
commit | 38908616d0e08b72e6b00d18490ed917fa643e4f (patch) | |
tree | 4311b80a505f4c3819c8cb2c3c937296fef0356f /src/3rdParty/lua/lobject.h | |
parent | 792e942f5269655ee03c48400999f3604b84396c (diff) | |
download | yuescript-38908616d0e08b72e6b00d18490ed917fa643e4f.tar.gz yuescript-38908616d0e08b72e6b00d18490ed917fa643e4f.tar.bz2 yuescript-38908616d0e08b72e6b00d18490ed917fa643e4f.zip |
reset Yuescript version since it's a minor version with new feature. update Lua lib.
Diffstat (limited to 'src/3rdParty/lua/lobject.h')
-rw-r--r-- | src/3rdParty/lua/lobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/3rdParty/lua/lobject.h b/src/3rdParty/lua/lobject.h index 950bebb..a1b4554 100644 --- a/src/3rdParty/lua/lobject.h +++ b/src/3rdParty/lua/lobject.h | |||
@@ -112,7 +112,7 @@ typedef struct TValue { | |||
112 | #define settt_(o,t) ((o)->tt_=(t)) | 112 | #define settt_(o,t) ((o)->tt_=(t)) |
113 | 113 | ||
114 | 114 | ||
115 | /* main macro to copy values (from 'obj1' to 'obj2') */ | 115 | /* main macro to copy values (from 'obj2' to 'obj1') */ |
116 | #define setobj(L,obj1,obj2) \ | 116 | #define setobj(L,obj1,obj2) \ |
117 | { TValue *io1=(obj1); const TValue *io2=(obj2); \ | 117 | { TValue *io1=(obj1); const TValue *io2=(obj2); \ |
118 | io1->value_ = io2->value_; settt_(io1, io2->tt_); \ | 118 | io1->value_ = io2->value_; settt_(io1, io2->tt_); \ |