From 1c4ce75aa02950d5c3d1d304a8139e2c66207adf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Leclercq?= Date: Sun, 13 Mar 2022 15:20:19 +0100 Subject: [PATCH] Fix compilation --- include/Nazara/Shader/Ast/Module.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/Nazara/Shader/Ast/Module.hpp b/include/Nazara/Shader/Ast/Module.hpp index 301464d98..be0b9b9e3 100644 --- a/include/Nazara/Shader/Ast/Module.hpp +++ b/include/Nazara/Shader/Ast/Module.hpp @@ -25,7 +25,7 @@ namespace Nz::ShaderAst struct ImportedModule; struct Metadata; - inline Module(UInt32 shaderLangVersion, std::string moduleName, const Uuid& moduleId = Uuid::Generate()); + inline Module(UInt32 shaderLangVersion, std::string moduleName = std::string(), const Uuid& moduleId = Uuid::Generate()); inline Module(std::shared_ptr metadata, std::vector importedModules = {}); inline Module(std::shared_ptr metadata, MultiStatementPtr rootNode, std::vector importedModules = {}); Module(const Module&) = default;