diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2011-09-30 09:46:06 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2011-09-30 09:46:06 -0300 |
commit | 9caf5b4f796879e16ccb2f6ebbc3887c604bc2f0 (patch) | |
tree | afff26c2ab3a7ce6150325eaf7356d301c1053ea /ltable.c | |
parent | 50cddefeeb409ce3cd696abc5b1e6303089266a9 (diff) | |
download | lua-9caf5b4f796879e16ccb2f6ebbc3887c604bc2f0.tar.gz lua-9caf5b4f796879e16ccb2f6ebbc3887c604bc2f0.tar.bz2 lua-9caf5b4f796879e16ccb2f6ebbc3887c604bc2f0.zip |
lint (unused definition)
Diffstat (limited to 'ltable.c')
-rw-r--r-- | ltable.c | 9 |
1 files changed, 1 insertions, 8 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltable.c,v 2.63 2011/09/15 17:09:02 roberto Exp roberto $ | 2 | ** $Id: ltable.c,v 2.64 2011/09/24 21:12:01 roberto Exp roberto $ |
3 | ** Lua tables (hash) | 3 | ** Lua tables (hash) |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -64,13 +64,6 @@ | |||
64 | #define hashpointer(t,p) hashmod(t, IntPoint(p)) | 64 | #define hashpointer(t,p) hashmod(t, IntPoint(p)) |
65 | 65 | ||
66 | 66 | ||
67 | /* | ||
68 | ** number of ints inside a lua_Number | ||
69 | */ | ||
70 | #define numints cast_int(sizeof(lua_Number)/sizeof(int)) | ||
71 | |||
72 | |||
73 | |||
74 | #define dummynode (&dummynode_) | 67 | #define dummynode (&dummynode_) |
75 | 68 | ||
76 | #define isdummy(n) ((n) == dummynode) | 69 | #define isdummy(n) ((n) == dummynode) |