aboutsummaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'lobject.h')
-rw-r--r--lobject.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/lobject.h b/lobject.h
index a8dcf35e..37bb16e8 100644
--- a/lobject.h
+++ b/lobject.h
@@ -214,9 +214,9 @@ typedef union Closure {
214*/ 214*/
215 215
216typedef struct Node { 216typedef struct Node {
217 struct Node *next; /* for chaining */
218 TObject _key; 217 TObject _key;
219 TObject _val; 218 TObject _val;
219 struct Node *next; /* for chaining */
220} Node; 220} Node;
221 221
222 222
@@ -226,7 +226,6 @@ typedef struct Table {
226 Node *node; 226 Node *node;
227 int sizearray; /* size of `array' array */ 227 int sizearray; /* size of `array' array */
228 lu_byte lsizenode; /* log2 of size of `node' array */ 228 lu_byte lsizenode; /* log2 of size of `node' array */
229 lu_byte weakmode;
230 unsigned short flags; /* 1<<p means tagmethod(p) is not present */ 229 unsigned short flags; /* 1<<p means tagmethod(p) is not present */
231 Node *firstfree; /* this position is free; all positions after it are full */ 230 Node *firstfree; /* this position is free; all positions after it are full */
232 struct Table *next; 231 struct Table *next;