remove unused pop_number template

This commit is contained in:
Grzegorz Kowalski 2023-02-06 22:34:07 +01:00
parent 7d379fd5dd
commit b0be10e25d

View File

@ -40,13 +40,6 @@ void push_number_table(lua_State* L, std::vector<T> v)
}
}
template<class T>
T pop_number(lua_State* L, int idx)
{
LUT_LOG(TRACE, "Popping number value from stack");
return (T)luaL_checknumber(L, idx);
}
template<class T>
std::vector<T> pop_number_table(lua_State* L, int idx)
{