14 Feb
2005
14 Feb
'05
12:10 p.m.
Fred (he's on OSX I think) has just sent me a patch for flowtext, and this patch treats this function thus:
diff -u -3 -r1.3 isnan.h --- src/isnan.h 9 Jul 2004 19:35:17 -0000 1.3 +++ src/isnan.h 14 Feb 2005 13:13:37 -0000 @@ -22,6 +22,7 @@
/* MacOSX definition */ #define isNaN(a) (__isnan(a)) +#define isFinite(a) (__isfinite(a))
#else
@@ -29,11 +30,13 @@
/* Win32 definition */ #define isNaN(a) (_isnan(a)) +#define isFinite(a) (std::isfinite(a))
#else
/* Linux definition */ #define isNaN(a) (isnan(a)) +#define isFinite(a) (std::isfinite(a))
#endif /* WIN32 */
Apparently that's what worked for him. I'll commit his patch along with this bit, if no one objects.