diff options
author | Li Jin <dragon-fly@qq.com> | 2020-09-11 15:31:51 +0800 |
---|---|---|
committer | Li Jin <dragon-fly@qq.com> | 2020-09-11 15:31:51 +0800 |
commit | 85b9ec82247f6e06b802188af35d09d3159625df (patch) | |
tree | 487152fb9639a74e323f7db962f558ba0514322d /src/lua/lobject.h | |
parent | dfd4e3b2b2abc0137d26ed3df303a398741bb6a0 (diff) | |
download | yuescript-85b9ec82247f6e06b802188af35d09d3159625df.tar.gz yuescript-85b9ec82247f6e06b802188af35d09d3159625df.tar.bz2 yuescript-85b9ec82247f6e06b802188af35d09d3159625df.zip |
update Lua.
Diffstat (limited to 'src/lua/lobject.h')
-rw-r--r-- | src/lua/lobject.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lua/lobject.h b/src/lua/lobject.h index 1620223..a9d4578 100644 --- a/src/lua/lobject.h +++ b/src/lua/lobject.h | |||
@@ -704,9 +704,9 @@ typedef union Node { | |||
704 | */ | 704 | */ |
705 | 705 | ||
706 | #define BITRAS (1 << 7) | 706 | #define BITRAS (1 << 7) |
707 | #define isrealasize(t) (!((t)->marked & BITRAS)) | 707 | #define isrealasize(t) (!((t)->flags & BITRAS)) |
708 | #define setrealasize(t) ((t)->marked &= cast_byte(~BITRAS)) | 708 | #define setrealasize(t) ((t)->flags &= cast_byte(~BITRAS)) |
709 | #define setnorealasize(t) ((t)->marked |= BITRAS) | 709 | #define setnorealasize(t) ((t)->flags |= BITRAS) |
710 | 710 | ||
711 | 711 | ||
712 | typedef struct Table { | 712 | typedef struct Table { |