Feature/warnings (#1885)

Remove many warnings from MSVC, Clang, and GCC
This commit is contained in:
Alexander Bock
2022-02-16 18:33:12 +01:00
committed by GitHub
parent 40ed640bc8
commit e8072495ec
47 changed files with 92 additions and 195 deletions

View File

@@ -59,7 +59,7 @@ struct LuaLibrary {
/// 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;
std::vector<LuaLibrary> subLibraries = std::vector<LuaLibrary>();
/// This struct contains information about a function or constant that is defined in
/// a Lua script