Some more fixes, hopefully GCC will stop shitting itself now
This commit is contained in:
@@ -126,7 +126,7 @@ namespace Nz
|
||||
template<typename T>
|
||||
void SinCos(std::enable_if_t<std::is_same<T, long double>::value, long double> x, long double* s, long double* c)
|
||||
{
|
||||
::sincosl(x, sin, cos);
|
||||
::sincosl(x, s, c);
|
||||
}
|
||||
#else
|
||||
// Naive implementation, hopefully optimized by the compiler
|
||||
|
||||
@@ -23,8 +23,8 @@ 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 = {});
|
||||
inline 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;
|
||||
SpirvPrinter& operator=(SpirvPrinter&&) = default;
|
||||
|
||||
Reference in New Issue
Block a user