From 36ec877a8ef10dc076a5dbfc7155fb826e80c88a Mon Sep 17 00:00:00 2001 From: elsid Date: Sat, 10 Jul 2021 01:01:50 +0200 Subject: [PATCH] Add missing include from sol/sol.hpp --- components/lua/luastate.hpp | 1 + components/lua/serialization.hpp | 1 + components/lua/utilpackage.hpp | 1 + components/queries/luabindings.hpp | 1 + 4 files changed, 4 insertions(+) diff --git a/components/lua/luastate.hpp b/components/lua/luastate.hpp index 9cb27fb114..6bac1612e7 100644 --- a/components/lua/luastate.hpp +++ b/components/lua/luastate.hpp @@ -3,6 +3,7 @@ #include +#include // missing from sol/sol.hpp #include #include diff --git a/components/lua/serialization.hpp b/components/lua/serialization.hpp index 63f93baac8..fddae2cfb4 100644 --- a/components/lua/serialization.hpp +++ b/components/lua/serialization.hpp @@ -1,6 +1,7 @@ #ifndef COMPONENTS_LUA_SERIALIZATION_H #define COMPONENTS_LUA_SERIALIZATION_H +#include // missing from sol/sol.hpp #include namespace LuaUtil diff --git a/components/lua/utilpackage.hpp b/components/lua/utilpackage.hpp index 06996fb96a..9e73723561 100644 --- a/components/lua/utilpackage.hpp +++ b/components/lua/utilpackage.hpp @@ -1,6 +1,7 @@ #ifndef COMPONENTS_LUA_UTILPACKAGE_H #define COMPONENTS_LUA_UTILPACKAGE_H +#include // missing from sol/sol.hpp #include namespace LuaUtil diff --git a/components/queries/luabindings.hpp b/components/queries/luabindings.hpp index a23dfa932b..16d1a822be 100644 --- a/components/queries/luabindings.hpp +++ b/components/queries/luabindings.hpp @@ -1,3 +1,4 @@ +#include // missing from sol/sol.hpp #include #include "query.hpp"