forked from boostorg/integer
Apply patch from Vincent Botet Escriba: fix check for size > long long.
[SVN r77109]
This commit is contained in:
@ -114,7 +114,7 @@ namespace boost
|
|||||||
typedef typename detail::int_least_helper
|
typedef typename detail::int_least_helper
|
||||||
<
|
<
|
||||||
#ifdef BOOST_HAS_LONG_LONG
|
#ifdef BOOST_HAS_LONG_LONG
|
||||||
(Bits-1 <= (int)(sizeof(boost::long_long_type) * CHAR_BIT)) +
|
(Bits <= (int)(sizeof(boost::long_long_type) * CHAR_BIT)) +
|
||||||
#else
|
#else
|
||||||
1 +
|
1 +
|
||||||
#endif
|
#endif
|
||||||
@ -144,7 +144,7 @@ namespace boost
|
|||||||
<
|
<
|
||||||
5 +
|
5 +
|
||||||
#ifdef BOOST_HAS_LONG_LONG
|
#ifdef BOOST_HAS_LONG_LONG
|
||||||
(Bits-1 <= (int)(sizeof(boost::long_long_type) * CHAR_BIT)) +
|
(Bits <= (int)(sizeof(boost::long_long_type) * CHAR_BIT)) +
|
||||||
#else
|
#else
|
||||||
1 +
|
1 +
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user