Make code respect BOOST_NO_INTEGRAL_INT64_T.

[SVN r58031]
This commit is contained in:
John Maddock
2009-11-29 16:02:45 +00:00
parent 1797528e35
commit 3af7c55ad9
4 changed files with 8 additions and 6 deletions

View File

@ -155,7 +155,7 @@ namespace boost
{
typedef typename detail::int_least_helper
<
#ifdef BOOST_HAS_LONG_LONG
#if !defined(BOOST_NO_INTEGRAL_INT64_T) && defined(BOOST_HAS_LONG_LONG)
(MaxValue <= ::boost::integer_traits<boost::long_long_type>::const_max) +
#else
1 +
@ -177,7 +177,7 @@ namespace boost
{
typedef typename detail::int_least_helper
<
#ifdef BOOST_HAS_LONG_LONG
#if !defined(BOOST_NO_INTEGRAL_INT64_T) && defined(BOOST_HAS_LONG_LONG)
(MinValue >= ::boost::integer_traits<boost::long_long_type>::const_min) +
#else
1 +
@ -201,7 +201,7 @@ namespace boost
typedef typename detail::int_least_helper
<
5 +
#ifdef BOOST_HAS_LONG_LONG
#if !defined(BOOST_NO_INTEGRAL_INT64_T) && defined(BOOST_HAS_LONG_LONG)
(MaxValue <= ::boost::integer_traits<boost::ulong_long_type>::const_max) +
#else
1 +