From 83285d1717f1033caecc6a9580e2d6dce78f9827 Mon Sep 17 00:00:00 2001 From: David Capello Date: Tue, 11 Sep 2018 15:02:08 -0300 Subject: [PATCH] Remove unused variable --- src/app/script/luacpp.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app/script/luacpp.cpp b/src/app/script/luacpp.cpp index 1f1da0b91..61c9c6e24 100644 --- a/src/app/script/luacpp.cpp +++ b/src/app/script/luacpp.cpp @@ -40,7 +40,6 @@ void run_mt_index_code(lua_State* L) if (luaL_loadbuffer(L, mt_index_code, sizeof(mt_index_code)-1, "internal") || lua_pcall(L, 0, 0, 0)) { // Error case - std::string err; const char* s = lua_tostring(L, -1); if (s) std::puts(s);