SPIRV: hex_float: remove workaround for VS2013

This commit is contained in:
Johannes Kauffmann
2023-02-25 20:56:09 +01:00
committed by kd-11
parent d8d1d4ef14
commit 12e9fdc2ec

View File

@@ -23,19 +23,6 @@
#include <limits>
#include <sstream>
#if defined(_MSC_VER) && _MSC_VER < 1800
namespace std {
bool isnan(double f)
{
return ::_isnan(f) != 0;
}
bool isinf(double f)
{
return ::_finite(f) == 0;
}
}
#endif
#include "bitutils.h"
namespace spvutils {