Commit a8c1ea97 authored by unknown's avatar unknown

Fix QNX warning


include/my_global.h:
  Avoid warnings on QNX, only define HAVE_RINT if not found by configure
parent 20c8bfe7
...@@ -344,7 +344,9 @@ extern "C" int madvise(void *addr, size_t len, int behav); ...@@ -344,7 +344,9 @@ extern "C" int madvise(void *addr, size_t len, int behav);
#undef LONGLONG_MIN /* These get wrongly defined in QNX 6.2 */ #undef LONGLONG_MIN /* These get wrongly defined in QNX 6.2 */
#undef LONGLONG_MAX /* standard system library 'limits.h' */ #undef LONGLONG_MAX /* standard system library 'limits.h' */
#ifdef __cplusplus #ifdef __cplusplus
#define HAVE_RINT /* rint() and isnan() functions are not */ #ifndef HAVE_RINT
#define HAVE_RINT
#endif /* rint() and isnan() functions are not */
#define rint(a) std::rint(a) /* visible in C++ scope due to an error */ #define rint(a) std::rint(a) /* visible in C++ scope due to an error */
#define isnan(a) std::isnan(a) /* in the usr/include/math.h on QNX */ #define isnan(a) std::isnan(a) /* in the usr/include/math.h on QNX */
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment