Compare commits

...

2 Commits

Author SHA1 Message Date
6fc1af6bef Branch for merging Boost.Build and Boost.Jam completely.
[SVN r59143]
2010-01-19 20:47:20 +00:00
896f2a7654 Disable warnings when defining INT#_C macros for gcc.
[SVN r58948]
2010-01-12 18:51:40 +00:00

View File

@ -390,6 +390,16 @@ INT#_C macros if they're not already defined (John Maddock).
# define UINTMAX_C(value) value##ui64
# else
// For the following code we get several warnings along the lines of:
//
// boost/cstdint.hpp:428:35: error: use of C99 long long integer constant
//
// So we declare this a system header to suppress these warnings.
#if defined(__GNUC__) && (__GNUC__ >= 4)
#pragma GCC system_header
#endif
// do it the old fashioned way:
// 8-bit types ------------------------------------------------------------//