From 076c35863ebbfd0bf650cea7b367dfd36a60a729 Mon Sep 17 00:00:00 2001 From: Johannes Kauffmann <19662702+JohannesKauffmann@users.noreply.github.com> Date: Sat, 25 Feb 2023 20:56:09 +0100 Subject: [PATCH] SPIRV: hex_float: remove workaround for VS2013 --- SPIRV/hex_float.h | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/SPIRV/hex_float.h b/SPIRV/hex_float.h index 8be8e9f7..785e8af1 100644 --- a/SPIRV/hex_float.h +++ b/SPIRV/hex_float.h @@ -23,19 +23,6 @@ #include #include -#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 {