forked from boostorg/integer
int64_t may not be defined on HP-UX when using gcc
[SVN r10067]
This commit is contained in:
@ -30,6 +30,10 @@
|
|||||||
# ifdef __hpux
|
# ifdef __hpux
|
||||||
// HP-UX has a nice <stdint.h> in a non-standard location
|
// HP-UX has a nice <stdint.h> in a non-standard location
|
||||||
# include <sys/_inttypes.h>
|
# include <sys/_inttypes.h>
|
||||||
|
# ifdef __STDC_32_MODE__
|
||||||
|
// this is triggered with GCC, because it defines __cplusplus < 199707L
|
||||||
|
# define BOOST_NO_INT64_T
|
||||||
|
# endif
|
||||||
# else
|
# else
|
||||||
# include <stdint.h>
|
# include <stdint.h>
|
||||||
# endif
|
# endif
|
||||||
|
Reference in New Issue
Block a user