From 923f0f7346818b2f834641c29a5dc02f3a59f5de Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 26 Sep 2006 01:36:31 +0000 Subject: [PATCH] inline --- stepmania/src/LuaManager.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/LuaManager.h b/stepmania/src/LuaManager.h index 814ec890a4..a9f7da08c3 100644 --- a/stepmania/src/LuaManager.h +++ b/stepmania/src/LuaManager.h @@ -128,7 +128,7 @@ namespace LuaHelpers } int TypeError( Lua *L, int narg, const char *tname ); - int AbsIndex( Lua *L, int i ) { if( i > 0 || i <= LUA_REGISTRYINDEX ) return i; return lua_gettop( L ) + i + 1; } + inline int AbsIndex( Lua *L, int i ) { if( i > 0 || i <= LUA_REGISTRYINDEX ) return i; return lua_gettop( L ) + i + 1; } }