aboutsummaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
Diffstat (limited to 'lstate.h')
-rw-r--r--lstate.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lstate.h b/lstate.h
index 5461b291..f08c2355 100644
--- a/lstate.h
+++ b/lstate.h
@@ -267,7 +267,8 @@ union GCUnion {
267#define gco2t(o) check_exp((o)->tt == LUA_TTABLE, &((cast_u(o))->h)) 267#define gco2t(o) check_exp((o)->tt == LUA_TTABLE, &((cast_u(o))->h))
268#define gco2p(o) check_exp((o)->tt == LUA_TPROTO, &((cast_u(o))->p)) 268#define gco2p(o) check_exp((o)->tt == LUA_TPROTO, &((cast_u(o))->p))
269#define gco2th(o) check_exp((o)->tt == LUA_TTHREAD, &((cast_u(o))->th)) 269#define gco2th(o) check_exp((o)->tt == LUA_TTHREAD, &((cast_u(o))->th))
270#define gco2upv(o) check_exp((o)->tt == LUA_TUPVAL, &((cast_u(o))->upv)) 270#define gco2upv(o) \
271 check_exp(novariant((o)->tt) == LUA_TUPVAL, &((cast_u(o))->upv))
271 272
272 273
273/* 274/*