Avoid unused var in release mode

This commit is contained in:
David Capello 2018-09-10 14:35:54 -03:00
parent c12fd2a5f4
commit f66d355249

View File

@ -110,7 +110,9 @@ Engine::Engine()
, m_delegate(nullptr)
, m_printLastResult(false)
{
#if _DEBUG
int top = lua_gettop(L);
#endif
// Standard Lua libraries
luaL_requiref(L, LUA_GNAME, luaopen_base, 1);