diff options
author | robot-contrib <robot-contrib@yandex-team.com> | 2023-08-15 13:46:54 +0300 |
---|---|---|
committer | robot-contrib <robot-contrib@yandex-team.com> | 2023-08-15 16:01:39 +0300 |
commit | f364ccb4b0a2bff6936436eb8a9e3b1e8cd4d4dd (patch) | |
tree | 1a6900d5caad986107d621055ab52fc6e94640ae | |
parent | 7fa11d68e1ce457f7336212b40f087a95cc43eab (diff) | |
download | ydb-f364ccb4b0a2bff6936436eb8a9e3b1e8cd4d4dd.tar.gz |
Update contrib/restricted/boost/conversion to 1.83.0
-rw-r--r-- | contrib/restricted/boost/conversion/include/boost/implicit_cast.hpp | 18 | ||||
-rw-r--r-- | contrib/restricted/boost/conversion/ya.make | 4 |
2 files changed, 20 insertions, 2 deletions
diff --git a/contrib/restricted/boost/conversion/include/boost/implicit_cast.hpp b/contrib/restricted/boost/conversion/include/boost/implicit_cast.hpp index 09e5f45648..c134d712dc 100644 --- a/contrib/restricted/boost/conversion/include/boost/implicit_cast.hpp +++ b/contrib/restricted/boost/conversion/include/boost/implicit_cast.hpp @@ -11,6 +11,24 @@ # pragma once #endif +#include <boost/config/pragma_message.hpp> +#if defined(BOOST_NO_CXX11_RVALUE_REFERENCES) || \ + defined(BOOST_NO_CXX11_AUTO_DECLARATIONS) || \ + defined(BOOST_NO_CXX11_CONSTEXPR) || \ + defined(BOOST_NO_CXX11_NULLPTR) || \ + defined(BOOST_NO_CXX11_NOEXCEPT) || \ + defined(BOOST_NO_CXX11_DEFAULTED_FUNCTIONS) || \ + defined(BOOST_NO_CXX11_FINAL) || \ + defined(BOOST_NO_CXX11_ALIGNOF) || \ + defined(BOOST_NO_CXX11_STATIC_ASSERT) || \ + defined(BOOST_NO_CXX11_SMART_PTR) || \ + defined(BOOST_NO_CXX11_HDR_INITIALIZER_LIST) || \ + defined(BOOST_NO_CXX11_HDR_TYPE_TRAITS) + +BOOST_PRAGMA_MESSAGE("C++03 support is deprecated in Boost.Conversion 1.82 and will be removed in Boost.Conversion 1.84.") + +#endif + namespace boost { namespace detail { diff --git a/contrib/restricted/boost/conversion/ya.make b/contrib/restricted/boost/conversion/ya.make index 4c4a467408..08997903f2 100644 --- a/contrib/restricted/boost/conversion/ya.make +++ b/contrib/restricted/boost/conversion/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/conversion/archive/boost-1.82.0.tar.gz) +ORIGINAL_SOURCE(https://github.com/boostorg/conversion/archive/boost-1.83.0.tar.gz) PEERDIR( contrib/restricted/boost/assert |