Add support for MS style __int64 when long long is not available.

Fixes #3084.

[SVN r57863]
This commit is contained in:
John Maddock
2009-11-23 13:23:15 +00:00
parent 285048504c
commit 4c23c47ebe
2 changed files with 15 additions and 1 deletions

View File

@ -65,7 +65,7 @@ template < >
template < >
class integer_traits< unsigned long >;
#if !defined(BOOST_NO_INTEGRAL_INT64_T) && !defined(BOOST_NO_INT64_T) && defined(BOOST_HAS_LONG_LONG)
#if !defined(BOOST_NO_INTEGRAL_INT64_T) && !defined(BOOST_NO_INT64_T) && (defined(BOOST_HAS_LONG_LONG) || defined(BOOST_HAS_MS_INT64))
template < >
class integer_traits< ::boost::long_long_type>;