diff options
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.h,v 1.136 2002/06/20 20:41:46 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 1.137 2002/06/24 13:08:45 roberto Exp roberto $ |
3 | ** Type definitions for Lua objects | 3 | ** Type definitions for Lua objects |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -212,7 +212,7 @@ typedef struct Table { | |||
212 | struct Table *next; | 212 | struct Table *next; |
213 | struct Table *mark; /* marked tables (point to itself when not marked) */ | 213 | struct Table *mark; /* marked tables (point to itself when not marked) */ |
214 | int sizearray; /* size of `array' array */ | 214 | int sizearray; /* size of `array' array */ |
215 | unsigned short flags; /* 1<<p means tagmethod(p) is not present */ | 215 | lu_byte flags; /* 1<<p means tagmethod(p) is not present */ |
216 | lu_byte lsizenode; /* log2 of size of `node' array */ | 216 | lu_byte lsizenode; /* log2 of size of `node' array */ |
217 | } Table; | 217 | } Table; |
218 | 218 | ||