aboutsummaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-03-18 09:50:04 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-03-18 09:50:04 -0300
commitab9e062928f7b9201fd5366a34a4fc855d13bc46 (patch)
tree37224175e0dd89badfccc6d745bdb5c850fd34c4 /lobject.h
parent81cdbabf095e23bf9fb5cef842967acb499b7bcc (diff)
downloadlua-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.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/lobject.h b/lobject.h
index 420eb6a9..1263f583 100644
--- a/lobject.h
+++ b/lobject.h
@@ -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