From 5ac32c7863066a1678e9bb529e3e7b3d6bbea842 Mon Sep 17 00:00:00 2001 From: ThePhD Date: Wed, 17 Aug 2016 16:00:27 -0400 Subject: [PATCH] SIGH unused FUCKING variable --- sol/stack_get.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sol/stack_get.hpp b/sol/stack_get.hpp index 3078aaba..c7669f24 100644 --- a/sol/stack_get.hpp +++ b/sol/stack_get.hpp @@ -88,7 +88,7 @@ namespace sol { lua_pushnil(L); while (lua_next(L, index) != 0) { int isint = 0; - lua_Integer li = lua_tointegerx(L, -2, &isint); + lua_tointegerx(L, -2, &isint); if (isint == 0) { lua_pop(L, 1); continue;