diff options
Diffstat (limited to 'src/lj_obj.h')
-rw-r--r-- | src/lj_obj.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_obj.h b/src/lj_obj.h index c237ebf5..85d904f3 100644 --- a/src/lj_obj.h +++ b/src/lj_obj.h | |||
@@ -358,7 +358,7 @@ typedef struct GCproto { | |||
358 | GCRef gclist; | 358 | GCRef gclist; |
359 | ProtoK k; /* Split constant array (points to the middle). */ | 359 | ProtoK k; /* Split constant array (points to the middle). */ |
360 | BCIns *bc; /* Array of bytecode instructions. */ | 360 | BCIns *bc; /* Array of bytecode instructions. */ |
361 | int16_t *uv; /* Upvalue list. local >= 0. parent uv < 0. */ | 361 | uint16_t *uv; /* Upvalue list. local slot|0x8000 or parent uv idx. */ |
362 | MSize sizekgc; /* Number of collectable constants. */ | 362 | MSize sizekgc; /* Number of collectable constants. */ |
363 | MSize sizekn; /* Number of lua_Number constants. */ | 363 | MSize sizekn; /* Number of lua_Number constants. */ |
364 | uint8_t sizeuv; /* Number of upvalues. */ | 364 | uint8_t sizeuv; /* Number of upvalues. */ |