Added extended-integer support

[SVN r47842]
This commit is contained in:
Daryle Walker
2008-07-27 17:08:51 +00:00
parent 188cef05a9
commit f041dc0f0a
3 changed files with 19 additions and 3 deletions

View File

@ -155,6 +155,12 @@ template < >
struct low_bits_mask_t< ::std::numeric_limits<unsigned long>::digits >;
#endif
#if BOOST_HAS_XINT && (BOOST_UXINT_MAX > ULONG_MAX)
template < >
struct low_bits_mask_t< ::std::numeric_limits< ::boost::detail::uxint_t
>::digits >;
#endif
// From <boost/integer/static_log2.hpp> ------------------------------------//