diff options
Diffstat (limited to '3rdParty/Boost/src/boost/ratio/config.hpp')
-rw-r--r-- | 3rdParty/Boost/src/boost/ratio/config.hpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/3rdParty/Boost/src/boost/ratio/config.hpp b/3rdParty/Boost/src/boost/ratio/config.hpp index 67a60fc..992a256 100644 --- a/3rdParty/Boost/src/boost/ratio/config.hpp +++ b/3rdParty/Boost/src/boost/ratio/config.hpp @@ -46,12 +46,18 @@ #ifdef INTMAX_C #define BOOST_RATIO_INTMAX_C(a) INTMAX_C(a) #else #define BOOST_RATIO_INTMAX_C(a) a##LL #endif +#ifdef UINTMAX_C +#define BOOST_RATIO_UINTMAX_C(a) UINTMAX_C(a) +#else +#define BOOST_RATIO_UINTMAX_C(a) a##ULL +#endif + #define BOOST_RATIO_INTMAX_T_MAX (0x7FFFFFFFFFFFFFFELL) #ifndef BOOST_NO_CXX11_STATIC_ASSERT #define BOOST_RATIO_STATIC_ASSERT(CND, MSG, TYPES) static_assert(CND,MSG) #elif defined(BOOST_RATIO_USES_STATIC_ASSERT) |