pike.git/
src/
global.h
Branch:
Tag:
Non-build tags
All tags
No tags
2015-10-14
2015-10-14 20:02:07 by Martin Nilsson <nilsson@fastmail.com>
77af4f11f68b65cead51a098d80eff047eaf494f (
6
lines) (+
2
/-
4
)
[
Show
|
Annotate
]
Branch:
8.1
Removed Intel IA64 compiler specific DO_NOT_WARN.
631:
#endif #endif
-
/* Used by the AutoBuild system to mark known warnings. */
-
#define DO_NOT_WARN(X) (X)
-
+
/* Some functions/macros used to avoid loss of precision warnings. */ #ifdef __ECL static INLINE long PTRDIFF_T_TO_LONG(ptrdiff_t x) {
-
return
DO_NOT_WARN
(
(
long)x
)
;
+
return (long)x;
} #else /* !__ECL */ #define PTRDIFF_T_TO_LONG(x) ((long)(x))