diff options
author | robot-contrib <robot-contrib@yandex-team.com> | 2023-08-15 13:44:16 +0300 |
---|---|---|
committer | robot-contrib <robot-contrib@yandex-team.com> | 2023-08-15 15:44:11 +0300 |
commit | a45a8362ded3284c0a986297bb1f3b54eadc7f7a (patch) | |
tree | fd93d0d442557bc690ef4e0cdc11f5fbfc25d2c5 /contrib | |
parent | 4252943d41fcf9c283df39d92ff45c33db8f3adc (diff) | |
download | ydb-a45a8362ded3284c0a986297bb1f3b54eadc7f7a.tar.gz |
Update contrib/restricted/boost/mpl to 1.83.0
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/restricted/boost/mpl/include/boost/mpl/assert.hpp | 6 | ||||
-rw-r--r-- | contrib/restricted/boost/mpl/ya.make | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/contrib/restricted/boost/mpl/include/boost/mpl/assert.hpp b/contrib/restricted/boost/mpl/include/boost/mpl/assert.hpp index 67700ab3b4..c7ecddf02f 100644 --- a/contrib/restricted/boost/mpl/include/boost/mpl/assert.hpp +++ b/contrib/restricted/boost/mpl/include/boost/mpl/assert.hpp @@ -297,7 +297,7 @@ BOOST_MPL_AUX_ASSERT_CONSTANT( \ std::size_t \ , BOOST_PP_CAT(mpl_assertion_in_line_,BOOST_MPL_AUX_PP_COUNTER()) = sizeof( \ boost::mpl::assertion_failed<false>( \ - boost::mpl::assert_arg( (void (*) pred)0, 1 ) \ + boost::mpl::assert_arg( (void (*) pred)BOOST_NULLPTR, 1 ) \ ) \ ) \ ) \ @@ -310,7 +310,7 @@ BOOST_MPL_AUX_ASSERT_CONSTANT( \ enum { \ BOOST_PP_CAT(mpl_assertion_in_line_,BOOST_MPL_AUX_PP_COUNTER()) = sizeof( \ boost::mpl::assertion<false>::failed( \ - boost::mpl::assert_not_arg( (void (*) pred)0, 1 ) \ + boost::mpl::assert_not_arg( (void (*) pred)BOOST_NULLPTR, 1 ) \ ) \ ) \ }\ @@ -321,7 +321,7 @@ BOOST_MPL_AUX_ASSERT_CONSTANT( \ std::size_t \ , BOOST_PP_CAT(mpl_assertion_in_line_,BOOST_MPL_AUX_PP_COUNTER()) = sizeof( \ boost::mpl::assertion_failed<false>( \ - boost::mpl::assert_not_arg( (void (*) pred)0, 1 ) \ + boost::mpl::assert_not_arg( (void (*) pred)BOOST_NULLPTR, 1 ) \ ) \ ) \ ) \ diff --git a/contrib/restricted/boost/mpl/ya.make b/contrib/restricted/boost/mpl/ya.make index f5e5e1eaae..45f1134d01 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.82.0) +VERSION(1.83.0) -ORIGINAL_SOURCE(https://github.com/boostorg/mpl/archive/boost-1.82.0.tar.gz) +ORIGINAL_SOURCE(https://github.com/boostorg/mpl/archive/boost-1.83.0.tar.gz) PEERDIR( contrib/restricted/boost/config |