Workaround some GCC bug

This commit is contained in:
Jérôme Leclercq
2020-08-27 22:58:44 +02:00
parent 391037d9e3
commit 3fe70476bb
2 changed files with 7 additions and 0 deletions

View File

@@ -11,6 +11,12 @@ namespace Nz
m_currentState(nullptr)
{
}
inline std::string SpirvPrinter::Print(const UInt32* codepoints, std::size_t count)
{
Settings settings;
return Print(codepoints, count, settings);
}
}
#include <Nazara/Shader/DebugOff.hpp>