Fix preprocessor logic for long long support.

Fixes #3657.
Fixes #3568.

[SVN r57843]
This commit is contained in:
John Maddock
2009-11-22 16:38:05 +00:00
parent eecbd5276f
commit dd1194afa4

View File

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