Win64 fix for missing _isnanf

This commit is contained in:
tresf
2014-09-01 00:35:48 -04:00
parent 46c92ef27f
commit 807d3af68c

View File

@@ -40,6 +40,12 @@
#ifndef isinff
#define isinff(x) isinf(x)
#endif
#ifndef _isnanf
#define _isnanf(x) isnan(x)
#endif
#ifndef _isinff
#define _isinff(x) isinf(x)
#endif
#endif
#ifdef __INTEL_COMPILER