MacOSX fix that never got applied before.
This commit is contained in:
parent
8e66e534ae
commit
710c2ccfcd
@ -21,11 +21,12 @@
|
||||
// #include <stdio.h>
|
||||
#include <math.h>
|
||||
|
||||
// #if defined (__APPLE__)
|
||||
// // any C++ header file undefines isinf and isnan
|
||||
// // so this should be included before <iostream>
|
||||
// inline int (isnan)(double r) { return isnan(r); }
|
||||
// #endif
|
||||
#if defined (__APPLE__)
|
||||
// any C++ header file undefines isinf and isnan
|
||||
// so this should be included before <iostream>
|
||||
inline int (isinf)(double r) { return isinf(r); }
|
||||
inline int (isnan)(double r) { return isnan(r); }
|
||||
#endif
|
||||
|
||||
#if defined(__MINGW32__)
|
||||
#define isnan(x) _isnan(x)
|
||||
|
Loading…
Reference in New Issue
Block a user