Fix a dumb bug.
This commit is contained in:
parent
f10db8a30e
commit
055e969e7a
@ -47,7 +47,7 @@ inline int (isnan)(double r) { return isnan(r); }
|
||||
#endif
|
||||
|
||||
#if defined (__FreeBSD__)
|
||||
inline int isnan(double r) { return !(r < 0 || r > 0); }
|
||||
inline int isnan(double r) { return !(r <= 0 || r >= 0); }
|
||||
#endif
|
||||
|
||||
#include STL_IOSTREAM
|
||||
|
Loading…
Reference in New Issue
Block a user