From 193b9a40040dc52cde722cea4415371681b2ea73 Mon Sep 17 00:00:00 2001 From: myk002 Date: Thu, 14 Jul 2022 14:08:33 -0700 Subject: [PATCH] add missing namespace which did not cause compiler errors for some reason --- library/LuaApi.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/LuaApi.cpp b/library/LuaApi.cpp index af8eee3c1..056a89a07 100644 --- a/library/LuaApi.cpp +++ b/library/LuaApi.cpp @@ -148,7 +148,7 @@ void Lua::Push(lua_State *state, df::coord2d pos) lua_setfield(state, -2, "y"); } -void GetVector(lua_State *state, std::vector &pvec) +void Lua::GetVector(lua_State *state, std::vector &pvec) { lua_pushnil(state); // first key while (lua_next(state, 1) != 0)