forked from boostorg/integer
Check for BOOST_HAS_MS_INT64 instead of specific compilers
[SVN r14664]
This commit is contained in:
@ -228,9 +228,9 @@ namespace boost
|
|||||||
# else
|
# else
|
||||||
# error defaults not correct; you must hand modify boost/cstdint.hpp
|
# error defaults not correct; you must hand modify boost/cstdint.hpp
|
||||||
# endif
|
# endif
|
||||||
# elif (defined(BOOST_MSVC) && (BOOST_MSVC >= 1100)) || (defined(__BORLANDC__) && (__BORLANDC__ >= 0x520))
|
# elif defined(BOOST_HAS_MS_INT64)
|
||||||
//
|
//
|
||||||
// we have Borland/Microsoft __int64:
|
// we have Borland/Intel/Microsoft __int64:
|
||||||
//
|
//
|
||||||
typedef __int64 intmax_t;
|
typedef __int64 intmax_t;
|
||||||
typedef unsigned __int64 uintmax_t;
|
typedef unsigned __int64 uintmax_t;
|
||||||
|
Reference in New Issue
Block a user