Check for BOOST_HAS_MS_INT64 instead of specific compilers

[SVN r14664]
This commit is contained in:
Beman Dawes
2002-08-04 01:27:24 +00:00
parent a9703fa803
commit cc1183d347

View File

@ -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;