Merge pull request #1126 from tresf/stable-1.1

Win64 fix for missing _isnanf
This commit is contained in:
Tobias Doerffel
2014-09-01 12:16:28 +02:00

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