updated boost on windows

This commit is contained in:
Bassem Girgis
2019-08-13 21:48:48 -05:00
parent 7d77d485fd
commit b40a3bee82
5162 changed files with 473027 additions and 116452 deletions

View File

@@ -7,48 +7,51 @@
#ifndef BOOST_MP_EXPLICIT_CONVERTIBLE_HPP
#define BOOST_MP_EXPLICIT_CONVERTIBLE_HPP
#include <boost/config.hpp>
#include <boost/type_traits/conditional.hpp>
#include <boost/type_traits/integral_constant.hpp>
#include <boost/type_traits/is_convertible.hpp>
#include <boost/utility/declval.hpp>
#include <boost/type_traits/declval.hpp>
#include <boost/multiprecision/detail/number_base.hpp> // number_category
namespace boost {
namespace multiprecision {
namespace detail {
template <int N>
template <unsigned int N>
struct dummy_size {};
template<typename S, typename T>
struct has_generic_interconversion
{
typedef typename mpl::if_c <
typedef typename boost::conditional <
is_number<S>::value && is_number<T>::value,
typename mpl::if_c <
typename boost::conditional <
number_category<S>::value == number_kind_integer,
typename mpl::if_c<
typename boost::conditional<
number_category<T>::value == number_kind_integer
|| number_category<T>::value == number_kind_floating_point
|| number_category<T>::value == number_kind_rational
|| number_category<T>::value == number_kind_fixed_point,
mpl::true_,
mpl::false_
boost::true_type,
boost::false_type
>::type,
typename mpl::if_c<
typename boost::conditional<
number_category<S>::value == number_kind_rational,
typename mpl::if_c<
typename boost::conditional<
number_category<T>::value == number_kind_rational
|| number_category<T>::value == number_kind_rational,
mpl::true_,
mpl::false_
boost::true_type,
boost::false_type
>::type,
typename mpl::if_c<
typename boost::conditional<
number_category<T>::value == number_kind_floating_point,
mpl::true_,
mpl::false_
boost::true_type,
boost::false_type
>::type
>::type
> ::type,
mpl::false_
boost::false_type
> ::type type;
};
@@ -57,7 +60,13 @@ namespace boost {
{
#ifndef BOOST_NO_SFINAE_EXPR
template<typename S1, typename T1>
static type_traits::yes_type selector(dummy_size<sizeof(static_cast<T1>(declval<S1>()))>*);
static type_traits::yes_type selector(dummy_size<sizeof(new T1(boost::declval<
#if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
S1
#else
S1 const&
#endif
>()))>*);
template<typename S1, typename T1>
static type_traits::no_type selector(...);
@@ -67,7 +76,7 @@ namespace boost {
typedef boost::integral_constant<bool, value> type;
#else
typedef typename has_generic_interconversion<S, T>::type gen_type;
typedef mpl::bool_<boost::is_convertible<S, T>::value || gen_type::value> type;
typedef boost::integral_constant<bool, boost::is_convertible<S, T>::value || gen_type::value> type;
#endif
};