diff options
author | robot-contrib <robot-contrib@yandex-team.com> | 2024-08-18 16:01:57 +0300 |
---|---|---|
committer | robot-contrib <robot-contrib@yandex-team.com> | 2024-08-18 16:14:47 +0300 |
commit | b7f971dc452c23e53de0b3c0025de68c286a9bc7 (patch) | |
tree | f41496c79b1264d26e32d2edd571bb79fc12dfef | |
parent | 3cb9c68b3254fa3760085593a0106aa48e53b285 (diff) | |
download | ydb-b7f971dc452c23e53de0b3c0025de68c286a9bc7.tar.gz |
Update contrib/restricted/boost/mpl to 1.86.0
46134359b1cc9a871c5895094d88a83be916139d
-rw-r--r-- | contrib/restricted/boost/mpl/include/boost/mpl/aux_/integral_wrapper.hpp | 3 | ||||
-rw-r--r-- | contrib/restricted/boost/mpl/ya.make | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/contrib/restricted/boost/mpl/include/boost/mpl/aux_/integral_wrapper.hpp b/contrib/restricted/boost/mpl/include/boost/mpl/aux_/integral_wrapper.hpp index 8748fbb93a..5f24b79495 100644 --- a/contrib/restricted/boost/mpl/include/boost/mpl/aux_/integral_wrapper.hpp +++ b/contrib/restricted/boost/mpl/include/boost/mpl/aux_/integral_wrapper.hpp @@ -56,7 +56,8 @@ struct AUX_WRAPPER_NAME // have to #ifdef here: some compilers don't like the 'N + 1' form (MSVC), // while some other don't like 'value + 1' (Borland), and some don't like // either -#if BOOST_WORKAROUND(__EDG_VERSION__, <= 243) +#if BOOST_WORKAROUND(__EDG_VERSION__, <= 243) \ + || __cplusplus >= 201103L private: BOOST_STATIC_CONSTANT(AUX_WRAPPER_VALUE_TYPE, next_value = BOOST_MPL_AUX_STATIC_CAST(AUX_WRAPPER_VALUE_TYPE, (N + 1))); BOOST_STATIC_CONSTANT(AUX_WRAPPER_VALUE_TYPE, prior_value = BOOST_MPL_AUX_STATIC_CAST(AUX_WRAPPER_VALUE_TYPE, (N - 1))); diff --git a/contrib/restricted/boost/mpl/ya.make b/contrib/restricted/boost/mpl/ya.make index 0b59777439..c790f207be 100644 --- a/contrib/restricted/boost/mpl/ya.make +++ b/contrib/restricted/boost/mpl/ya.make @@ -6,9 +6,9 @@ LICENSE(BSL-1.0) LICENSE_TEXTS(.yandex_meta/licenses.list.txt) -VERSION(1.85.0) +VERSION(1.86.0) -ORIGINAL_SOURCE(https://github.com/boostorg/mpl/archive/boost-1.85.0.tar.gz) +ORIGINAL_SOURCE(https://github.com/boostorg/mpl/archive/boost-1.86.0.tar.gz) PEERDIR( contrib/restricted/boost/config |