SIGH unused FUCKING variable

This commit is contained in:
ThePhD 2016-08-17 16:00:27 -04:00
parent 8e387a269b
commit 5ac32c7863

View File

@ -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;