mirror of
https://github.com/boostorg/integer.git
synced 2025-07-23 01:07:15 +02:00
Add support for MS style __int64 when long long is not available.
Fixes #3084. [SVN r57863]
This commit is contained in:
@ -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>;
|
||||
|
||||
|
Reference in New Issue
Block a user