SPIRV: hex_float: remove workaround for VS2013

This commit is contained in:
Johannes Kauffmann 2023-02-25 20:56:09 +01:00 committed by arcady-lunarg
parent 14e57abf26
commit 076c35863e

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 {