diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2003-03-18 09:50:04 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2003-03-18 09:50:04 -0300 |
commit | ab9e062928f7b9201fd5366a34a4fc855d13bc46 (patch) | |
tree | 37224175e0dd89badfccc6d745bdb5c850fd34c4 /lobject.h | |
parent | 81cdbabf095e23bf9fb5cef842967acb499b7bcc (diff) | |
download | lua-ab9e062928f7b9201fd5366a34a4fc855d13bc46.tar.gz lua-ab9e062928f7b9201fd5366a34a4fc855d13bc46.tar.bz2 lua-ab9e062928f7b9201fd5366a34a4fc855d13bc46.zip |
name changes to avoid name collision between macros and variables
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.h,v 1.157 2003/02/11 10:46:24 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 1.158 2003/02/18 16:02:56 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 | */ |
@@ -316,7 +316,6 @@ typedef struct Table { | |||
316 | 316 | ||
317 | #define twoto(x) (1<<(x)) | 317 | #define twoto(x) (1<<(x)) |
318 | #define sizenode(t) (twoto((t)->lsizenode)) | 318 | #define sizenode(t) (twoto((t)->lsizenode)) |
319 | #define sizearray(t) ((t)->sizearray) | ||
320 | 319 | ||
321 | 320 | ||
322 | 321 | ||