Merge topic 'jsoncpp-portability'

75644daf jsoncpp: Fix compilation as C99 on Solaris
This commit is contained in:
Brad King 2015-09-15 09:17:15 -04:00 committed by CMake Topic Stage
commit cda189356e
1 changed files with 3 additions and 1 deletions

View File

@ -24,7 +24,9 @@
// Solaris
#if defined(__sun)
# include <ieeefp.h>
# define isfinite finite
# if !defined(isfinite)
# define isfinite finite
# endif
#endif
// AIX