同步操作将从 cutself/proj 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
// Boost integer_fwd.hpp header file ---------------------------------------//// (C) Copyright Dave Abrahams and Daryle Walker 2001. Distributed under the Boost// Software License, Version 1.0. (See accompanying file// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)// See http://www.boost.org/libs/integer for documentation.#ifndef BOOST_INTEGER_FWD_HPP#define BOOST_INTEGER_FWD_HPP#include <climits> // for UCHAR_MAX, etc.#include <cstddef> // for std::size_t#include <boost/config.hpp> // for BOOST_NO_INTRINSIC_WCHAR_T#include <boost/limits.hpp> // for std::numeric_limits#include <boost/cstdint.hpp> // For intmax_tnamespace boost{#ifdef BOOST_NO_INTEGRAL_INT64_Ttypedef unsigned long static_log2_argument_type;typedef int static_log2_result_type;typedef long static_min_max_signed_type;typedef unsigned long static_min_max_unsigned_type;#elsetypedef boost::uintmax_t static_min_max_unsigned_type;typedef boost::intmax_t static_min_max_signed_type;typedef boost::uintmax_t static_log2_argument_type;typedef int static_log2_result_type;#endif// From <boost/cstdint.hpp> ------------------------------------------------//// Only has typedefs or using statements, with #conditionals// From <boost/integer_traits.hpp> -----------------------------------------//template < class T >class integer_traits;template < >class integer_traits< bool >;template < >class integer_traits< char >;template < >class integer_traits< signed char >;template < >class integer_traits< unsigned char >;#ifndef BOOST_NO_INTRINSIC_WCHAR_Ttemplate < >class integer_traits< wchar_t >;#endiftemplate < >class integer_traits< short >;template < >class integer_traits< unsigned short >;template < >class integer_traits< int >;template < >class integer_traits< unsigned int >;template < >class integer_traits< long >;template < >class integer_traits< unsigned long >;#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>;template < >class integer_traits< ::boost::ulong_long_type >;#elif !defined(BOOST_NO_INTEGRAL_INT64_T) && !defined(BOOST_NO_INT64_T) && defined(BOOST_HAS_MS_INT64)template < >class integer_traits<__int64>;template < >class integer_traits<unsigned __int64>;#endif// From <boost/integer.hpp> ------------------------------------------------//template < typename LeastInt >struct int_fast_t;template< int Bits >struct int_t;template< int Bits >struct uint_t;#if !defined(BOOST_NO_INTEGRAL_INT64_T) && defined(BOOST_HAS_LONG_LONG)template< boost::long_long_type MaxValue > // maximum value to require support#elsetemplate< long MaxValue > // maximum value to require support#endifstruct int_max_value_t;#if !defined(BOOST_NO_INTEGRAL_INT64_T) && defined(BOOST_HAS_LONG_LONG)template< boost::long_long_type MinValue > // minimum value to require support#elsetemplate< long MinValue > // minimum value to require support#endifstruct int_min_value_t;#if !defined(BOOST_NO_INTEGRAL_INT64_T) && defined(BOOST_HAS_LONG_LONG)template< boost::ulong_long_type MaxValue > // maximum value to require support#elsetemplate< unsigned long MaxValue > // maximum value to require support#endifstruct uint_value_t;// From <boost/integer/integer_mask.hpp> -----------------------------------//template < std::size_t Bit >struct high_bit_mask_t;template < std::size_t Bits >struct low_bits_mask_t;template < >struct low_bits_mask_t< ::std::numeric_limits<unsigned char>::digits >;// From <boost/integer/static_log2.hpp> ------------------------------------//template <static_log2_argument_type Value >struct static_log2;template <> struct static_log2<0u>;// From <boost/integer/static_min_max.hpp> ---------------------------------//template <static_min_max_signed_type Value1, static_min_max_signed_type Value2>struct static_signed_min;template <static_min_max_signed_type Value1, static_min_max_signed_type Value2>struct static_signed_max;template <static_min_max_unsigned_type Value1, static_min_max_unsigned_type Value2>struct static_unsigned_min;template <static_min_max_unsigned_type Value1, static_min_max_unsigned_type Value2>struct static_unsigned_max;// From <boost/integer/common_factor_ct.hpp>#ifdef BOOST_NO_INTEGRAL_INT64_Ttypedef unsigned long static_gcd_type;#elsetypedef boost::uintmax_t static_gcd_type;#endiftemplate < static_gcd_type Value1, static_gcd_type Value2 >struct static_gcd;template < static_gcd_type Value1, static_gcd_type Value2 >struct static_lcm;// From <boost/integer/common_factor_rt.hpp>template < typename IntegerType >class gcd_evaluator;template < typename IntegerType >class lcm_evaluator;} // namespace boost#endif // BOOST_INTEGER_FWD_HPP
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。