macOS fixes (+ cache deps)

This commit is contained in:
Jérôme Leclercq
2022-03-20 11:29:39 +01:00
parent 26a4dc8f41
commit 63320fa205
3 changed files with 7 additions and 4 deletions

View File

@@ -28,11 +28,11 @@ namespace Nz::ShaderAst
inline Module(UInt32 shaderLangVersion, std::string moduleName = std::string(), const Uuid& moduleId = Uuid::Generate());
inline Module(std::shared_ptr<const Metadata> metadata, std::vector<ImportedModule> importedModules = {});
inline Module(std::shared_ptr<const Metadata> metadata, MultiStatementPtr rootNode, std::vector<ImportedModule> importedModules = {});
Module(const Module&) = default;
Module(const Module&) = delete;
Module(Module&&) noexcept = default;
~Module() = default;
Module& operator=(const Module&) = default;
Module& operator=(const Module&) = delete;
Module& operator=(Module&&) noexcept = default;
struct ImportedModule