mirror of https://github.com/rusefi/lua.git
detail (avoid too large macro)
This commit is contained in:
parent
89b56e7d84
commit
d2ab1aef31
8
ltests.c
8
ltests.c
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
** $Id: ltests.c,v 2.171 2014/06/10 17:41:38 roberto Exp roberto $
|
** $Id: ltests.c,v 2.172 2014/06/17 17:13:29 roberto Exp roberto $
|
||||||
** Internal Module for Debugging of the Lua Implementation
|
** Internal Module for Debugging of the Lua Implementation
|
||||||
** See Copyright Notice in lua.h
|
** See Copyright Notice in lua.h
|
||||||
*/
|
*/
|
||||||
|
@ -207,8 +207,10 @@ static int testobjref (global_State *g, GCObject *f, GCObject *t) {
|
||||||
return r1;
|
return r1;
|
||||||
}
|
}
|
||||||
|
|
||||||
#define checkobjref(g,f,t) \
|
#define checkobjref(g,f,t) checkobjref_(g,f,obj2gco(t))
|
||||||
lua_assert((t) == NULL || testobjref(g,f,obj2gco(t)))
|
static void checkobjref_ (global_State *g, GCObject *f, GCObject *t) {
|
||||||
|
lua_assert((t) == NULL || testobjref(g,f,obj2gco(t)));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
static void checkvalref (global_State *g, GCObject *f, const TValue *t) {
|
static void checkvalref (global_State *g, GCObject *f, const TValue *t) {
|
||||||
|
|
Loading…
Reference in New Issue