From 7d279dce4b40a9f5ed16a58001e87cff9755185e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Leclercq?= Date: Tue, 26 Oct 2021 20:27:08 +0200 Subject: [PATCH] OCD fix --- include/Nazara/Shader/SpirvSectionBase.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/Nazara/Shader/SpirvSectionBase.inl b/include/Nazara/Shader/SpirvSectionBase.inl index 760bfea6b..8c930e9b2 100644 --- a/include/Nazara/Shader/SpirvSectionBase.inl +++ b/include/Nazara/Shader/SpirvSectionBase.inl @@ -12,7 +12,7 @@ namespace Nz return AppendRaw(BuildOpcode(opcode, wordCount.wc)); } - template + template std::size_t SpirvSectionBase::Append(SpirvOp opcode, const Args&... args) { unsigned int wordCount = 1 + (CountWord(args) + ... + 0);