From cfba57207660fd27ddac9ea51cdeb263c2d6b418 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 30 Jun 2000 11:35:17 -0300 Subject: remove dummy argument in LUA_ASSERT --- lobject.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'lobject.h') diff --git a/lobject.h b/lobject.h index 01235ffa..2185eac4 100644 --- a/lobject.h +++ b/lobject.h @@ -1,5 +1,5 @@ /* -** $Id: lobject.h,v 1.68 2000/06/26 19:28:31 roberto Exp roberto $ +** $Id: lobject.h,v 1.69 2000/06/28 20:20:36 roberto Exp roberto $ ** Type definitions for Lua objects ** See Copyright Notice in lua.h */ @@ -15,11 +15,11 @@ #ifdef DEBUG #undef NDEBUG #include -#define LUA_INTERNALERROR(L,s) assert(((void)s,0)) -#define LUA_ASSERT(L,c,s) assert(((void)s,(c))) +#define LUA_INTERNALERROR(s) assert(((void)s,0)) +#define LUA_ASSERT(c,s) assert(((void)s,(c))) #else -#define LUA_INTERNALERROR(L,s) /* empty */ -#define LUA_ASSERT(L,c,s) /* empty */ +#define LUA_INTERNALERROR(s) /* empty */ +#define LUA_ASSERT(c,s) /* empty */ #endif -- cgit v1.2.3-55-g6feb