forked from boostorg/integer
Replace buggy Cygwin INTMAX_C and UINTMAX_C macros
[SVN r29276]
This commit is contained in:
@ -40,6 +40,15 @@
|
|||||||
# include <inttypes.h>
|
# include <inttypes.h>
|
||||||
# else
|
# else
|
||||||
# include <stdint.h>
|
# include <stdint.h>
|
||||||
|
|
||||||
|
// There is a bug in Cygwin two _C macros
|
||||||
|
# if defined(__STDC_CONSTANT_MACROS) && defined(__CYGWIN__)
|
||||||
|
# undef INTMAX_C
|
||||||
|
# undef UINTMAX_C
|
||||||
|
# define INTMAX_C(c) c##LL
|
||||||
|
# define UINTMAX_C(c) c##ULL
|
||||||
|
# endif
|
||||||
|
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
namespace boost
|
namespace boost
|
||||||
|
Reference in New Issue
Block a user