Fix Linux compilation

This commit is contained in:
Jérôme Leclercq
2021-04-17 19:45:43 +02:00
parent f85d11e55b
commit 8028044966
4 changed files with 5 additions and 3 deletions

View File

@@ -10,8 +10,8 @@ namespace Nz
{
inline RenderPass::RenderPass(std::vector<Attachment> attachments, std::vector<SubpassDescription> subpassDescriptions, std::vector<SubpassDependency> subpassDependencies) :
m_attachments(std::move(attachments)),
m_subpassDescriptions(std::move(subpassDescriptions)),
m_subpassDependencies(std::move(subpassDependencies))
m_subpassDependencies(std::move(subpassDependencies)),
m_subpassDescriptions(std::move(subpassDescriptions))
{
}