]> granicus.if.org Git - pdns/commitdiff
silence unused var warning
authorbert hubert <bert.hubert@netherlabs.nl>
Sun, 1 Nov 2015 13:42:47 +0000 (14:42 +0100)
committerbert hubert <bert.hubert@netherlabs.nl>
Sun, 1 Nov 2015 13:42:47 +0000 (14:42 +0100)
pdns/lua-pdns.cc

index 18e955260bb05f91ffb7532a31799efbb0e95be8..85dc2e518c6569b698f999d5eb7e50c19e3fce3a 100644 (file)
@@ -88,7 +88,6 @@ static bool getFromTable(lua_State *lua, const std::string &key, uint32_t& value
 void pushLuaTable(lua_State* lua, const vector<pair<string,string>>& table)
 {
   lua_newtable(lua);
-  int pos=0;
   for(const auto& e : table) {
     lua_pushstring(lua, e.second.c_str());
     lua_setfield(lua, -2, e.first.c_str());