Workaround some GCC bug
This commit is contained in:
parent
391037d9e3
commit
3fe70476bb
|
|
@ -23,6 +23,7 @@ namespace Nz
|
|||
SpirvPrinter(SpirvPrinter&&) = default;
|
||||
~SpirvPrinter() = default;
|
||||
|
||||
std::string Print(const UInt32* codepoints, std::size_t count);
|
||||
std::string Print(const UInt32* codepoints, std::size_t count, const Settings& settings = {});
|
||||
|
||||
SpirvPrinter& operator=(const SpirvPrinter&) = default;
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue