warning fix

This commit is contained in:
MihailRis 2024-02-15 11:50:19 +03:00
parent e21b607f2d
commit f88623ddd6

View File

@ -29,6 +29,7 @@ fs::path resolve_path(lua_State* L, const std::string& path) {
return scripting::engine->getPaths()->resolve(path);
} catch (const files_access_error& err) {
luaL_error(L, err.what());
abort(); // unreachable
}
}