Fix compile error introduced with previous commit

This commit is contained in:
Alexander Bock
2021-11-02 15:11:34 +01:00
parent fb6807b1e0
commit 0c295ef15d
+2 -2
View File
@@ -58,10 +58,10 @@ struct LuaLibrary {
std::string name;
/// The list of all C-based callback functions for this library
std::vector<Function> functions;
/// A list of all libraries that are children for this library
std::vector<LuaLibrary> subLibraries;
/// A list of script files that are executed for each Lua state
std::vector<std::filesystem::path> scripts = std::vector<std::filesystem::path>();
/// A list of all libraries that are children for this library
std::vector<LuaLibrary> subLibraries;
/// This struct contains information about a function or constant that is defined in
/// a Lua script