diff options
author | Lua Team <team@lua.org> | 2015-02-26 12:00:00 +0000 |
---|---|---|
committer | repogen <> | 2015-02-26 12:00:00 +0000 |
commit | 4fd8751bd02b0618b975504491e2221ced98c8d4 (patch) | |
tree | ce972c3b21c96d9e7dfa59a4745e4fa0e6a18168 /src/lobject.h | |
parent | 357e7cdc32cd4224b03748e4f284857e47f70a68 (diff) | |
download | lua-github-5.2.x.tar.gz |
Diffstat (limited to 'src/lobject.h')
-rw-r--r-- | src/lobject.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lobject.h b/src/lobject.h index 3a630b94..bc0bb69f 100644 --- a/src/lobject.h +++ b/src/lobject.h @@ -1,5 +1,5 @@ /* -** $Id: lobject.h,v 2.71.1.1 2013/04/12 18:48:47 roberto Exp $ +** $Id: lobject.h,v 2.71.1.2 2014/05/07 14:14:58 roberto Exp $ ** Type definitions for Lua objects ** See Copyright Notice in lua.h */ @@ -561,12 +561,12 @@ typedef struct Table { CommonHeader; lu_byte flags; /* 1<<p means tagmethod(p) is not present */ lu_byte lsizenode; /* log2 of size of `node' array */ - struct Table *metatable; + int sizearray; /* size of `array' array */ TValue *array; /* array part */ Node *node; Node *lastfree; /* any free position is before this position */ + struct Table *metatable; GCObject *gclist; - int sizearray; /* size of `array' array */ } Table; |