This commit is contained in:
Glenn Maynard
2006-09-22 08:33:20 +00:00
parent 04e9fcc2bf
commit 557563e81d
+3 -3
View File
@@ -93,9 +93,9 @@ namespace LuaHelpers
template<class T> template<class T>
bool Pop( T &val, lua_State *L ) bool Pop( T &val, lua_State *L )
{ {
bool bRet = LuaHelpers::FromStack( val, -1, L ); bool bRet = LuaHelpers::FromStack( val, -1, L );
lua_pop( L, 1 ); lua_pop( L, 1 );
return bRet; return bRet;
} }
template<class T> template<class T>