diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2003-12-10 10:13:36 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2003-12-10 10:13:36 -0200 |
commit | 47fc57a2529c83376883f36954082cfe80ae588f (patch) | |
tree | c2e57e2f9f7d78279144bfd9cbd04a3b1b131f12 /ltests.h | |
parent | 4d5fe1f54bc00850f77a7c42f9e95d0ff3f1ab5b (diff) | |
download | lua-47fc57a2529c83376883f36954082cfe80ae588f.tar.gz lua-47fc57a2529c83376883f36954082cfe80ae588f.tar.bz2 lua-47fc57a2529c83376883f36954082cfe80ae588f.zip |
`TObject' renamed to `TValue' + other name changes and better assertions
for incremental garbage collection
Diffstat (limited to 'ltests.h')
-rw-r--r-- | ltests.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltests.h,v 1.20 2002/12/04 17:29:05 roberto Exp roberto $ | 2 | ** $Id: ltests.h,v 1.21 2003/10/02 20:31:17 roberto Exp roberto $ |
3 | ** Internal Header for Debugging of the Lua Implementation | 3 | ** Internal Header for Debugging of the Lua Implementation |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -19,7 +19,6 @@ | |||
19 | #include <assert.h> | 19 | #include <assert.h> |
20 | #define lua_assert(c) assert(c) | 20 | #define lua_assert(c) assert(c) |
21 | #define check_exp(c,e) (lua_assert(c), (e)) | 21 | #define check_exp(c,e) (lua_assert(c), (e)) |
22 | #define api_check(L, o) lua_assert(o) | ||
23 | 22 | ||
24 | 23 | ||
25 | /* to avoid warnings, and to make sure value is really unused */ | 24 | /* to avoid warnings, and to make sure value is really unused */ |