simpler configuration to turn on all asserts

This commit is contained in:
Roberto Ierusalimschy
2004-09-10 14:30:46 -03:00
parent 0de2065f4e
commit 226c57fec0
3 changed files with 6 additions and 11 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: llimits.h,v 1.58 2004/04/30 20:13:38 roberto Exp roberto $
** $Id: llimits.h,v 1.59 2004/06/23 15:57:29 roberto Exp roberto $
** Limits, basic types, and some other `installation-dependent' definitions
** See Copyright Notice in lua.h
*/
@@ -63,9 +63,7 @@ typedef LUSER_ALIGNMENT_T L_Umaxalign;
typedef LUA_UACNUMBER l_uacNumber;
#ifndef check_exp
#define check_exp(c,e) (e)
#endif
#define check_exp(c,e) (lua_assert(c), (e))
#ifndef UNUSED