mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-24 18:03:43 +03:00
Fix for MSVC 2015: isnan is supported in this version
This commit is contained in:
parent
abf1f28c44
commit
4a6b31f56a
|
@ -129,14 +129,15 @@ static int pthread_mutex_init(pthread_mutex_t *mutex, void* fake)
|
||||||
/* remove the inline keyword, since it doesn't work unless C++ file */
|
/* remove the inline keyword, since it doesn't work unless C++ file */
|
||||||
#define inline
|
#define inline
|
||||||
|
|
||||||
/* Hmmm, MSVC doesn't have a isnan/isinf function, but has _isnan function */
|
/* Hmmm, MSVC <2015 doesn't have a isnan/isinf function, but has _isnan function */
|
||||||
#if defined (_MSC_VER)
|
#if defined (_MSC_VER)
|
||||||
|
#if !defined(isnan)
|
||||||
#define isnan(x) (_isnan(x))
|
#define isnan(x) (_isnan(x))
|
||||||
/* The following line was hacked together from simliar code by Bjorn Reese
|
/* The following line was hacked together from simliar code by Bjorn Reese
|
||||||
* in libxml2 code */
|
* in libxml2 code */
|
||||||
#define isinf(x) ((_fpclass(x) == _FPCLASS_PINF) ? 1 \
|
#define isinf(x) ((_fpclass(x) == _FPCLASS_PINF) ? 1 \
|
||||||
: ((_fpclass(x) == _FPCLASS_NINF) ? -1 : 0))
|
: ((_fpclass(x) == _FPCLASS_NINF) ? -1 : 0))
|
||||||
|
#endif
|
||||||
#define strcasecmp(x, y) lstrcmpi(x, y)
|
#define strcasecmp(x, y) lstrcmpi(x, y)
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue
Block a user