Replace buggy Cygwin INTMAX_C and UINTMAX_C macros

[SVN r29276]
This commit is contained in:
Beman Dawes
2005-05-30 01:45:13 +00:00
parent 29275d71aa
commit 8602a17a10

View File

@ -40,6 +40,15 @@
# include <inttypes.h>
# else
# 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
namespace boost