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 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