| 
									
										
										
										
											2000-07-07 16:04:40 +00:00
										 |  |  | //  boost integer.hpp header file  -------------------------------------------//
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-08-15 10:13:49 +00:00
										 |  |  | //  Copyright Beman Dawes and Daryle Walker 1999.  Distributed under the Boost
 | 
					
						
							| 
									
										
										
										
											2004-07-25 12:01:00 +00:00
										 |  |  | //  Software License, Version 1.0. (See accompanying file
 | 
					
						
							|  |  |  | //  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
 | 
					
						
							| 
									
										
										
										
											2000-07-07 16:04:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-27 16:51:53 +00:00
										 |  |  | //  See http://www.boost.org/libs/integer for documentation.
 | 
					
						
							| 
									
										
										
										
											2000-07-07 16:04:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | //  Revision History
 | 
					
						
							| 
									
										
										
										
											2001-12-03 03:29:57 +00:00
										 |  |  | //   22 Sep 01  Added value-based integer templates. (Daryle Walker)
 | 
					
						
							| 
									
										
										
										
											2001-04-01 11:59:18 +00:00
										 |  |  | //   01 Apr 01  Modified to use new <boost/limits.hpp> header. (John Maddock)
 | 
					
						
							|  |  |  | //   30 Jul 00  Add typename syntax fix (Jens Maurer)
 | 
					
						
							| 
									
										
										
										
											2000-07-07 16:04:40 +00:00
										 |  |  | //   28 Aug 99  Initial version
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef BOOST_INTEGER_HPP
 | 
					
						
							|  |  |  | #define BOOST_INTEGER_HPP
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-12-03 03:29:57 +00:00
										 |  |  | #include <boost/integer_fwd.hpp>  // self include
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-25 12:38:09 +00:00
										 |  |  | #include <boost/integer_traits.hpp>  // for boost::::boost::integer_traits
 | 
					
						
							| 
									
										
										
										
											2009-11-24 10:12:29 +00:00
										 |  |  | #include <boost/limits.hpp>          // for ::std::numeric_limits
 | 
					
						
							| 
									
										
										
										
											2009-11-23 18:51:33 +00:00
										 |  |  | #include <boost/cstdint.hpp>         // for boost::int64_t and BOOST_NO_INTEGRAL_INT64_T
 | 
					
						
							| 
									
										
										
										
											2012-05-02 17:10:20 +00:00
										 |  |  | #include <boost/static_assert.hpp>
 | 
					
						
							| 
									
										
										
										
											2008-07-15 09:59:19 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-26 11:08:27 +00:00
										 |  |  | //
 | 
					
						
							|  |  |  | // We simply cannot include this header on gcc without getting copious warnings of the kind:
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // boost/integer.hpp:77:30: warning: use of C99 long long integer constant
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // And yet there is no other reasonable implementation, so we declare this a system header
 | 
					
						
							|  |  |  | // to suppress these warnings.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | #if defined(__GNUC__) && (__GNUC__ >= 4)
 | 
					
						
							|  |  |  | #pragma GCC system_header
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-07 16:04:40 +00:00
										 |  |  | namespace boost | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-11 18:57:24 +00:00
										 |  |  |   //  Helper templates  ------------------------------------------------------//
 | 
					
						
							| 
									
										
										
										
											2008-07-15 18:56:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-07 16:04:40 +00:00
										 |  |  |   //  fast integers from least integers
 | 
					
						
							| 
									
										
										
										
											2001-03-12 14:01:34 +00:00
										 |  |  |   //  int_fast_t<> works correctly for unsigned too, in spite of the name.
 | 
					
						
							| 
									
										
										
										
											2000-07-07 16:04:40 +00:00
										 |  |  |   template< typename LeastInt > | 
					
						
							| 
									
										
										
										
											2015-01-25 17:03:09 +01:00
										 |  |  |   struct int_fast_t | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |      typedef LeastInt fast; | 
					
						
							| 
									
										
										
										
											2009-11-29 13:59:18 +00:00
										 |  |  |      typedef fast     type; | 
					
						
							|  |  |  |   }; // imps may specialize
 | 
					
						
							| 
									
										
										
										
											2009-11-11 18:57:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-24 10:12:29 +00:00
										 |  |  |   namespace detail{ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-25 17:03:09 +01:00
										 |  |  |   //  convert category to type
 | 
					
						
							| 
									
										
										
										
											2009-11-11 18:57:24 +00:00
										 |  |  |   template< int Category > struct int_least_helper {}; // default is empty
 | 
					
						
							| 
									
										
										
										
											2012-05-02 17:10:20 +00:00
										 |  |  |   template< int Category > struct uint_least_helper {}; // default is empty
 | 
					
						
							| 
									
										
										
										
											2009-11-11 18:57:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   //  specializatons: 1=long, 2=int, 3=short, 4=signed char,
 | 
					
						
							|  |  |  |   //     6=unsigned long, 7=unsigned int, 8=unsigned short, 9=unsigned char
 | 
					
						
							|  |  |  |   //  no specializations for 0 and 5: requests for a type > long are in error
 | 
					
						
							| 
									
										
										
										
											2009-11-23 18:51:33 +00:00
										 |  |  | #ifdef BOOST_HAS_LONG_LONG
 | 
					
						
							|  |  |  |   template<> struct int_least_helper<1> { typedef boost::long_long_type least; }; | 
					
						
							| 
									
										
										
										
											2010-02-04 11:15:54 +00:00
										 |  |  | #elif defined(BOOST_HAS_MS_INT64)
 | 
					
						
							|  |  |  |   template<> struct int_least_helper<1> { typedef __int64 least; }; | 
					
						
							| 
									
										
										
										
											2009-11-23 18:51:33 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |   template<> struct int_least_helper<2> { typedef long least; }; | 
					
						
							|  |  |  |   template<> struct int_least_helper<3> { typedef int least; }; | 
					
						
							|  |  |  |   template<> struct int_least_helper<4> { typedef short least; }; | 
					
						
							|  |  |  |   template<> struct int_least_helper<5> { typedef signed char least; }; | 
					
						
							|  |  |  | #ifdef BOOST_HAS_LONG_LONG
 | 
					
						
							| 
									
										
										
										
											2012-05-02 17:10:20 +00:00
										 |  |  |   template<> struct uint_least_helper<1> { typedef boost::ulong_long_type least; }; | 
					
						
							| 
									
										
										
										
											2010-02-04 11:15:54 +00:00
										 |  |  | #elif defined(BOOST_HAS_MS_INT64)
 | 
					
						
							| 
									
										
										
										
											2012-05-02 17:10:20 +00:00
										 |  |  |   template<> struct uint_least_helper<1> { typedef unsigned __int64 least; }; | 
					
						
							| 
									
										
										
										
											2009-11-23 18:51:33 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2012-05-02 17:10:20 +00:00
										 |  |  |   template<> struct uint_least_helper<2> { typedef unsigned long least; }; | 
					
						
							|  |  |  |   template<> struct uint_least_helper<3> { typedef unsigned int least; }; | 
					
						
							|  |  |  |   template<> struct uint_least_helper<4> { typedef unsigned short least; }; | 
					
						
							|  |  |  |   template<> struct uint_least_helper<5> { typedef unsigned char least; }; | 
					
						
							| 
									
										
										
										
											2008-07-16 09:55:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-26 11:08:27 +00:00
										 |  |  |   template <int Bits> | 
					
						
							|  |  |  |   struct exact_signed_base_helper{}; | 
					
						
							|  |  |  |   template <int Bits> | 
					
						
							|  |  |  |   struct exact_unsigned_base_helper{}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   template <> struct exact_signed_base_helper<sizeof(signed char)* CHAR_BIT> { typedef signed char exact; }; | 
					
						
							|  |  |  |   template <> struct exact_unsigned_base_helper<sizeof(unsigned char)* CHAR_BIT> { typedef unsigned char exact; }; | 
					
						
							|  |  |  | #if USHRT_MAX != UCHAR_MAX
 | 
					
						
							|  |  |  |   template <> struct exact_signed_base_helper<sizeof(short)* CHAR_BIT> { typedef short exact; }; | 
					
						
							|  |  |  |   template <> struct exact_unsigned_base_helper<sizeof(unsigned short)* CHAR_BIT> { typedef unsigned short exact; }; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #if UINT_MAX != USHRT_MAX
 | 
					
						
							|  |  |  |   template <> struct exact_signed_base_helper<sizeof(int)* CHAR_BIT> { typedef int exact; }; | 
					
						
							|  |  |  |   template <> struct exact_unsigned_base_helper<sizeof(unsigned int)* CHAR_BIT> { typedef unsigned int exact; }; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-01-25 17:11:04 +01:00
										 |  |  | #if ULONG_MAX != UINT_MAX && ( !defined __TI_COMPILER_VERSION__ || \
 | 
					
						
							|  |  |  |     ( __TI_COMPILER_VERSION__ >= 7000000 && !defined __TI_40BIT_LONG__ ) ) | 
					
						
							| 
									
										
										
										
											2009-11-26 11:08:27 +00:00
										 |  |  |   template <> struct exact_signed_base_helper<sizeof(long)* CHAR_BIT> { typedef long exact; }; | 
					
						
							|  |  |  |   template <> struct exact_unsigned_base_helper<sizeof(unsigned long)* CHAR_BIT> { typedef unsigned long exact; }; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(BOOST_HAS_LONG_LONG) &&\
 | 
					
						
							|  |  |  |    ((defined(ULLONG_MAX) && (ULLONG_MAX != ULONG_MAX)) ||\ | 
					
						
							|  |  |  |     (defined(ULONG_LONG_MAX) && (ULONG_LONG_MAX != ULONG_MAX)) ||\ | 
					
						
							|  |  |  |     (defined(ULONGLONG_MAX) && (ULONGLONG_MAX != ULONG_MAX)) ||\ | 
					
						
							|  |  |  |     (defined(_ULLONG_MAX) && (_ULLONG_MAX != ULONG_MAX))) | 
					
						
							| 
									
										
										
										
											2009-11-30 13:50:05 +00:00
										 |  |  |   template <> struct exact_signed_base_helper<sizeof(boost::long_long_type)* CHAR_BIT> { typedef boost::long_long_type exact; }; | 
					
						
							|  |  |  |   template <> struct exact_unsigned_base_helper<sizeof(boost::ulong_long_type)* CHAR_BIT> { typedef boost::ulong_long_type exact; }; | 
					
						
							| 
									
										
										
										
											2009-11-26 11:08:27 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-24 10:12:29 +00:00
										 |  |  |   } // namespace detail
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-07 16:04:40 +00:00
										 |  |  |   //  integer templates specifying number of bits  ---------------------------//
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   //  signed
 | 
					
						
							| 
									
										
										
										
											2009-11-11 18:57:24 +00:00
										 |  |  |   template< int Bits >   // bits (including sign) required
 | 
					
						
							| 
									
										
										
										
											2015-01-18 20:04:09 +02:00
										 |  |  |   struct int_t : public boost::detail::exact_signed_base_helper<Bits> | 
					
						
							| 
									
										
										
										
											2000-07-07 16:04:40 +00:00
										 |  |  |   { | 
					
						
							| 
									
										
										
										
											2012-05-02 17:10:20 +00:00
										 |  |  |       BOOST_STATIC_ASSERT_MSG(Bits <= (int)(sizeof(boost::intmax_t) * CHAR_BIT), | 
					
						
							|  |  |  |          "No suitable signed integer type with the requested number of bits is available."); | 
					
						
							| 
									
										
										
										
											2015-01-18 20:04:09 +02:00
										 |  |  |       typedef typename boost::detail::int_least_helper | 
					
						
							| 
									
										
										
										
											2009-11-11 18:57:24 +00:00
										 |  |  |         < | 
					
						
							| 
									
										
										
										
											2009-11-23 18:51:33 +00:00
										 |  |  | #ifdef BOOST_HAS_LONG_LONG
 | 
					
						
							| 
									
										
										
										
											2012-02-24 16:57:13 +00:00
										 |  |  |           (Bits <= (int)(sizeof(boost::long_long_type) * CHAR_BIT)) + | 
					
						
							| 
									
										
										
										
											2009-11-23 18:51:33 +00:00
										 |  |  | #else
 | 
					
						
							|  |  |  |            1 + | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2009-11-24 10:12:29 +00:00
										 |  |  |           (Bits-1 <= ::std::numeric_limits<long>::digits) + | 
					
						
							|  |  |  |           (Bits-1 <= ::std::numeric_limits<int>::digits) + | 
					
						
							|  |  |  |           (Bits-1 <= ::std::numeric_limits<short>::digits) + | 
					
						
							|  |  |  |           (Bits-1 <= ::std::numeric_limits<signed char>::digits) | 
					
						
							| 
									
										
										
										
											2009-11-11 18:57:24 +00:00
										 |  |  |         >::least  least; | 
					
						
							| 
									
										
										
										
											2009-11-29 13:59:18 +00:00
										 |  |  |       typedef typename int_fast_t<least>::type  fast; | 
					
						
							| 
									
										
										
										
											2008-07-15 09:59:19 +00:00
										 |  |  |   }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-07 16:04:40 +00:00
										 |  |  |   //  unsigned
 | 
					
						
							| 
									
										
										
										
											2009-11-11 18:57:24 +00:00
										 |  |  |   template< int Bits >   // bits required
 | 
					
						
							| 
									
										
										
										
											2015-01-18 20:04:09 +02:00
										 |  |  |   struct uint_t : public boost::detail::exact_unsigned_base_helper<Bits> | 
					
						
							| 
									
										
										
										
											2000-07-07 16:04:40 +00:00
										 |  |  |   { | 
					
						
							| 
									
										
										
										
											2012-05-02 17:10:20 +00:00
										 |  |  |      BOOST_STATIC_ASSERT_MSG(Bits <= (int)(sizeof(boost::uintmax_t) * CHAR_BIT), | 
					
						
							|  |  |  |          "No suitable unsigned integer type with the requested number of bits is available."); | 
					
						
							| 
									
										
										
										
											2009-12-03 12:14:15 +00:00
										 |  |  | #if (defined(__BORLANDC__) || defined(__CODEGEAR__)) && defined(BOOST_NO_INTEGRAL_INT64_T)
 | 
					
						
							|  |  |  |      // It's really not clear why this workaround should be needed... shrug I guess!  JM
 | 
					
						
							| 
									
										
										
										
											2015-01-25 17:03:09 +01:00
										 |  |  |      BOOST_STATIC_CONSTANT(int, s = | 
					
						
							| 
									
										
										
										
											2009-12-03 12:14:15 +00:00
										 |  |  |            6 + | 
					
						
							|  |  |  |           (Bits <= ::std::numeric_limits<unsigned long>::digits) + | 
					
						
							|  |  |  |           (Bits <= ::std::numeric_limits<unsigned int>::digits) + | 
					
						
							|  |  |  |           (Bits <= ::std::numeric_limits<unsigned short>::digits) + | 
					
						
							|  |  |  |           (Bits <= ::std::numeric_limits<unsigned char>::digits)); | 
					
						
							|  |  |  |      typedef typename detail::int_least_helper< ::boost::uint_t<Bits>::s>::least least; | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2015-01-18 20:04:09 +02:00
										 |  |  |       typedef typename boost::detail::uint_least_helper | 
					
						
							| 
									
										
										
										
											2015-01-25 17:03:09 +01:00
										 |  |  |         < | 
					
						
							| 
									
										
										
										
											2009-11-23 18:51:33 +00:00
										 |  |  | #ifdef BOOST_HAS_LONG_LONG
 | 
					
						
							| 
									
										
										
										
											2012-02-24 16:57:13 +00:00
										 |  |  |           (Bits <= (int)(sizeof(boost::long_long_type) * CHAR_BIT)) + | 
					
						
							| 
									
										
										
										
											2009-11-23 18:51:33 +00:00
										 |  |  | #else
 | 
					
						
							|  |  |  |            1 + | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2009-11-24 10:12:29 +00:00
										 |  |  |           (Bits <= ::std::numeric_limits<unsigned long>::digits) + | 
					
						
							|  |  |  |           (Bits <= ::std::numeric_limits<unsigned int>::digits) + | 
					
						
							|  |  |  |           (Bits <= ::std::numeric_limits<unsigned short>::digits) + | 
					
						
							|  |  |  |           (Bits <= ::std::numeric_limits<unsigned char>::digits) | 
					
						
							| 
									
										
										
										
											2009-11-11 18:57:24 +00:00
										 |  |  |         >::least  least; | 
					
						
							| 
									
										
										
										
											2009-12-03 12:14:15 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2009-11-29 13:59:18 +00:00
										 |  |  |       typedef typename int_fast_t<least>::type  fast; | 
					
						
							| 
									
										
										
										
											2001-03-12 14:01:34 +00:00
										 |  |  |       // int_fast_t<> works correctly for unsigned too, in spite of the name.
 | 
					
						
							| 
									
										
										
										
											2000-07-07 16:04:40 +00:00
										 |  |  |   }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-12-03 03:29:57 +00:00
										 |  |  |   //  integer templates specifying extreme value  ----------------------------//
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   //  signed
 | 
					
						
							| 
									
										
										
										
											2015-01-25 17:03:09 +01:00
										 |  |  | #if !defined(BOOST_NO_INTEGRAL_INT64_T) && !defined(BOOST_NO_INT64_T) && defined(BOOST_HAS_LONG_LONG)
 | 
					
						
							| 
									
										
										
										
											2009-11-23 18:51:33 +00:00
										 |  |  |   template< boost::long_long_type MaxValue >   // maximum value to require support
 | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2009-11-11 18:57:24 +00:00
										 |  |  |   template< long MaxValue >   // maximum value to require support
 | 
					
						
							| 
									
										
										
										
											2009-11-23 18:51:33 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-01-25 17:03:09 +01:00
										 |  |  |   struct int_max_value_t | 
					
						
							| 
									
										
										
										
											2001-12-03 03:29:57 +00:00
										 |  |  |   { | 
					
						
							| 
									
										
										
										
											2015-01-18 20:04:09 +02:00
										 |  |  |       typedef typename boost::detail::int_least_helper | 
					
						
							| 
									
										
										
										
											2009-11-11 18:57:24 +00:00
										 |  |  |         < | 
					
						
							| 
									
										
										
										
											2015-01-25 17:03:09 +01:00
										 |  |  | #if !defined(BOOST_NO_INTEGRAL_INT64_T) && !defined(BOOST_NO_INT64_T) && defined(BOOST_HAS_LONG_LONG)
 | 
					
						
							| 
									
										
										
										
											2009-11-24 10:12:29 +00:00
										 |  |  |           (MaxValue <= ::boost::integer_traits<boost::long_long_type>::const_max) + | 
					
						
							| 
									
										
										
										
											2009-11-23 18:51:33 +00:00
										 |  |  | #else
 | 
					
						
							|  |  |  |            1 + | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2009-11-24 10:12:29 +00:00
										 |  |  |           (MaxValue <= ::boost::integer_traits<long>::const_max) + | 
					
						
							|  |  |  |           (MaxValue <= ::boost::integer_traits<int>::const_max) + | 
					
						
							|  |  |  |           (MaxValue <= ::boost::integer_traits<short>::const_max) + | 
					
						
							|  |  |  |           (MaxValue <= ::boost::integer_traits<signed char>::const_max) | 
					
						
							| 
									
										
										
										
											2009-11-11 18:57:24 +00:00
										 |  |  |         >::least  least; | 
					
						
							| 
									
										
										
										
											2009-11-29 13:59:18 +00:00
										 |  |  |       typedef typename int_fast_t<least>::type  fast; | 
					
						
							| 
									
										
										
										
											2001-12-03 03:29:57 +00:00
										 |  |  |   }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-25 17:03:09 +01:00
										 |  |  | #if !defined(BOOST_NO_INTEGRAL_INT64_T) && !defined(BOOST_NO_INT64_T) && defined(BOOST_HAS_LONG_LONG)
 | 
					
						
							| 
									
										
										
										
											2009-11-23 18:51:33 +00:00
										 |  |  |   template< boost::long_long_type MinValue >   // minimum value to require support
 | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2009-11-11 18:57:24 +00:00
										 |  |  |   template< long MinValue >   // minimum value to require support
 | 
					
						
							| 
									
										
										
										
											2009-11-23 18:51:33 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-01-25 17:03:09 +01:00
										 |  |  |   struct int_min_value_t | 
					
						
							| 
									
										
										
										
											2001-12-03 03:29:57 +00:00
										 |  |  |   { | 
					
						
							| 
									
										
										
										
											2015-01-18 20:04:09 +02:00
										 |  |  |       typedef typename boost::detail::int_least_helper | 
					
						
							| 
									
										
										
										
											2009-11-11 18:57:24 +00:00
										 |  |  |         < | 
					
						
							| 
									
										
										
										
											2015-01-25 17:03:09 +01:00
										 |  |  | #if !defined(BOOST_NO_INTEGRAL_INT64_T) && !defined(BOOST_NO_INT64_T) && defined(BOOST_HAS_LONG_LONG)
 | 
					
						
							| 
									
										
										
										
											2009-11-24 10:12:29 +00:00
										 |  |  |           (MinValue >= ::boost::integer_traits<boost::long_long_type>::const_min) + | 
					
						
							| 
									
										
										
										
											2009-11-23 18:51:33 +00:00
										 |  |  | #else
 | 
					
						
							|  |  |  |            1 + | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2009-11-24 10:12:29 +00:00
										 |  |  |           (MinValue >= ::boost::integer_traits<long>::const_min) + | 
					
						
							|  |  |  |           (MinValue >= ::boost::integer_traits<int>::const_min) + | 
					
						
							|  |  |  |           (MinValue >= ::boost::integer_traits<short>::const_min) + | 
					
						
							|  |  |  |           (MinValue >= ::boost::integer_traits<signed char>::const_min) | 
					
						
							| 
									
										
										
										
											2009-11-11 18:57:24 +00:00
										 |  |  |         >::least  least; | 
					
						
							| 
									
										
										
										
											2009-11-29 13:59:18 +00:00
										 |  |  |       typedef typename int_fast_t<least>::type  fast; | 
					
						
							| 
									
										
										
										
											2001-12-03 03:29:57 +00:00
										 |  |  |   }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   //  unsigned
 | 
					
						
							| 
									
										
										
										
											2009-11-23 18:51:33 +00:00
										 |  |  | #if !defined(BOOST_NO_INTEGRAL_INT64_T) && defined(BOOST_HAS_LONG_LONG)
 | 
					
						
							|  |  |  |   template< boost::ulong_long_type MaxValue >   // minimum value to require support
 | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2009-11-30 13:50:05 +00:00
										 |  |  |   template< unsigned long MaxValue >   // minimum value to require support
 | 
					
						
							| 
									
										
										
										
											2009-11-23 18:51:33 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-01-25 17:03:09 +01:00
										 |  |  |   struct uint_value_t | 
					
						
							| 
									
										
										
										
											2001-12-03 03:29:57 +00:00
										 |  |  |   { | 
					
						
							| 
									
										
										
										
											2009-12-11 15:59:42 +00:00
										 |  |  | #if (defined(__BORLANDC__) || defined(__CODEGEAR__))
 | 
					
						
							| 
									
										
										
										
											2009-11-30 13:50:05 +00:00
										 |  |  |      // It's really not clear why this workaround should be needed... shrug I guess!  JM
 | 
					
						
							| 
									
										
										
										
											2009-12-11 15:59:42 +00:00
										 |  |  | #if defined(BOOST_NO_INTEGRAL_INT64_T)
 | 
					
						
							| 
									
										
										
										
											2015-01-25 17:03:09 +01:00
										 |  |  |       BOOST_STATIC_CONSTANT(unsigned, which = | 
					
						
							| 
									
										
										
										
											2012-05-02 17:10:20 +00:00
										 |  |  |            1 + | 
					
						
							| 
									
										
										
										
											2009-11-30 13:50:05 +00:00
										 |  |  |           (MaxValue <= ::boost::integer_traits<unsigned long>::const_max) + | 
					
						
							|  |  |  |           (MaxValue <= ::boost::integer_traits<unsigned int>::const_max) + | 
					
						
							|  |  |  |           (MaxValue <= ::boost::integer_traits<unsigned short>::const_max) + | 
					
						
							|  |  |  |           (MaxValue <= ::boost::integer_traits<unsigned char>::const_max)); | 
					
						
							|  |  |  |       typedef typename detail::int_least_helper< ::boost::uint_value_t<MaxValue>::which>::least least; | 
					
						
							| 
									
										
										
										
											2009-12-11 15:59:42 +00:00
										 |  |  | #else // BOOST_NO_INTEGRAL_INT64_T
 | 
					
						
							| 
									
										
										
										
											2015-01-25 17:03:09 +01:00
										 |  |  |       BOOST_STATIC_CONSTANT(unsigned, which = | 
					
						
							| 
									
										
										
										
											2012-05-02 17:10:20 +00:00
										 |  |  |            1 + | 
					
						
							| 
									
										
										
										
											2009-12-11 15:59:42 +00:00
										 |  |  |           (MaxValue <= ::boost::integer_traits<boost::ulong_long_type>::const_max) + | 
					
						
							|  |  |  |           (MaxValue <= ::boost::integer_traits<unsigned long>::const_max) + | 
					
						
							|  |  |  |           (MaxValue <= ::boost::integer_traits<unsigned int>::const_max) + | 
					
						
							|  |  |  |           (MaxValue <= ::boost::integer_traits<unsigned short>::const_max) + | 
					
						
							|  |  |  |           (MaxValue <= ::boost::integer_traits<unsigned char>::const_max)); | 
					
						
							| 
									
										
										
										
											2012-05-02 17:10:20 +00:00
										 |  |  |       typedef typename detail::uint_least_helper< ::boost::uint_value_t<MaxValue>::which>::least least; | 
					
						
							| 
									
										
										
										
											2009-12-11 15:59:42 +00:00
										 |  |  | #endif // BOOST_NO_INTEGRAL_INT64_T
 | 
					
						
							| 
									
										
										
										
											2009-11-30 13:50:05 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2015-01-18 20:04:09 +02:00
										 |  |  |       typedef typename boost::detail::uint_least_helper | 
					
						
							| 
									
										
										
										
											2015-01-25 17:03:09 +01:00
										 |  |  |         < | 
					
						
							| 
									
										
										
										
											2009-11-29 16:02:45 +00:00
										 |  |  | #if !defined(BOOST_NO_INTEGRAL_INT64_T) && defined(BOOST_HAS_LONG_LONG)
 | 
					
						
							| 
									
										
										
										
											2009-12-11 17:46:10 +00:00
										 |  |  |           (MaxValue <= ::boost::integer_traits<boost::ulong_long_type>::const_max) + | 
					
						
							| 
									
										
										
										
											2009-11-23 18:51:33 +00:00
										 |  |  | #else
 | 
					
						
							|  |  |  |            1 + | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2009-11-24 10:12:29 +00:00
										 |  |  |           (MaxValue <= ::boost::integer_traits<unsigned long>::const_max) + | 
					
						
							|  |  |  |           (MaxValue <= ::boost::integer_traits<unsigned int>::const_max) + | 
					
						
							|  |  |  |           (MaxValue <= ::boost::integer_traits<unsigned short>::const_max) + | 
					
						
							|  |  |  |           (MaxValue <= ::boost::integer_traits<unsigned char>::const_max) | 
					
						
							| 
									
										
										
										
											2009-11-11 18:57:24 +00:00
										 |  |  |         >::least  least; | 
					
						
							| 
									
										
										
										
											2009-11-30 13:50:05 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2009-11-29 13:59:18 +00:00
										 |  |  |       typedef typename int_fast_t<least>::type  fast; | 
					
						
							| 
									
										
										
										
											2001-12-03 03:29:57 +00:00
										 |  |  |   }; | 
					
						
							| 
									
										
										
										
											2000-07-07 16:04:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } // namespace boost
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif  // BOOST_INTEGER_HPP
 |