jsoncpp: Provide 'isfinite' implementation on Solaris
Solaris provides a 'finite' function in <ieeefp.h>.
This commit is contained in:
parent
4c49606598
commit
7e310624b0
@ -21,6 +21,12 @@
|
|||||||
#define snprintf _snprintf
|
#define snprintf _snprintf
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// Solaris
|
||||||
|
#if defined(__sun)
|
||||||
|
# include <ieeefp.h>
|
||||||
|
# define isfinite finite
|
||||||
|
#endif
|
||||||
|
|
||||||
// Ancient glibc
|
// Ancient glibc
|
||||||
#if defined(__GLIBC__) && __GLIBC__ == 2 && __GLIBC_MINOR__ < 2
|
#if defined(__GLIBC__) && __GLIBC__ == 2 && __GLIBC_MINOR__ < 2
|
||||||
# if !defined(isfinite)
|
# if !defined(isfinite)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user