aboutsummaryrefslogtreecommitdiff
path: root/llimits.h
diff options
context:
space:
mode:
Diffstat (limited to 'llimits.h')
-rw-r--r--llimits.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/llimits.h b/llimits.h
index a3e754e4..29872ca3 100644
--- a/llimits.h
+++ b/llimits.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llimits.h,v 1.135 2015/06/09 14:21:00 roberto Exp roberto $ 2** $Id: llimits.h,v 1.136 2015/07/15 15:57:13 roberto Exp roberto $
3** Limits, basic types, and some other 'installation-dependent' definitions 3** Limits, basic types, and some other 'installation-dependent' definitions
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -84,7 +84,7 @@ typedef LUAI_UACINT l_uacInt;
84#if defined(lua_assert) 84#if defined(lua_assert)
85#define check_exp(c,e) (lua_assert(c), (e)) 85#define check_exp(c,e) (lua_assert(c), (e))
86/* to avoid problems with conditions too long */ 86/* to avoid problems with conditions too long */
87#define lua_longassert(c) { if (!(c)) lua_assert(0); } 87#define lua_longassert(c) ((c) ? (void)0 : lua_assert(0))
88#else 88#else
89#define lua_assert(c) ((void)0) 89#define lua_assert(c) ((void)0)
90#define check_exp(c,e) (e) 90#define check_exp(c,e) (e)