From 8223ff473f3ffe782629fb1ba9ce1f96efeb7fd4 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 2 Dec 1999 14:24:45 -0200 Subject: lua_Object is a pointer to the stack (because now the stack doen't move) --- lobject.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lobject.h') diff --git a/lobject.h b/lobject.h index d286095f..d644d2ea 100644 --- a/lobject.h +++ b/lobject.h @@ -1,5 +1,5 @@ /* -** $Id: lobject.h,v 1.37 1999/11/22 13:12:07 roberto Exp roberto $ +** $Id: lobject.h,v 1.38 1999/11/26 18:59:20 roberto Exp roberto $ ** Type definitions for Lua objects ** See Copyright Notice in lua.h */ @@ -26,6 +26,8 @@ #endif +#define UNUSED(x) (void)x /* to avoid warnings */ + /* ** "real" is the type "number" of Lua ** GREP LUA_NUMBER to change that -- cgit v1.2.3-55-g6feb