diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-12-02 14:24:45 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-12-02 14:24:45 -0200 |
commit | 8223ff473f3ffe782629fb1ba9ce1f96efeb7fd4 (patch) | |
tree | 94d59b8fcc1845002f8972f46069140cee7079c0 /lobject.h | |
parent | fe237ad8085f34e89fcd3610a9771215af63f03f (diff) | |
download | lua-8223ff473f3ffe782629fb1ba9ce1f96efeb7fd4.tar.gz lua-8223ff473f3ffe782629fb1ba9ce1f96efeb7fd4.tar.bz2 lua-8223ff473f3ffe782629fb1ba9ce1f96efeb7fd4.zip |
lua_Object is a pointer to the stack (because now the stack doen't move)
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.h,v 1.37 1999/11/22 13:12:07 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 1.38 1999/11/26 18:59:20 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 | */ |
@@ -26,6 +26,8 @@ | |||
26 | #endif | 26 | #endif |
27 | 27 | ||
28 | 28 | ||
29 | #define UNUSED(x) (void)x /* to avoid warnings */ | ||
30 | |||
29 | /* | 31 | /* |
30 | ** "real" is the type "number" of Lua | 32 | ** "real" is the type "number" of Lua |
31 | ** GREP LUA_NUMBER to change that | 33 | ** GREP LUA_NUMBER to change that |