diff options
author | robot-contrib <robot-contrib@yandex-team.com> | 2023-08-15 21:47:54 +0300 |
---|---|---|
committer | robot-contrib <robot-contrib@yandex-team.com> | 2023-08-15 22:42:48 +0300 |
commit | 9d6d0a0973985de0970d53639143a6d1f9048912 (patch) | |
tree | 055622b990bba42999b8238d2836cb4054213421 | |
parent | d6f67906ea5b369b47bce8e0a7125d66114fdbde (diff) | |
download | ydb-9d6d0a0973985de0970d53639143a6d1f9048912.tar.gz |
Update contrib/restricted/boost/lexical_cast to 1.83.0
-rw-r--r-- | contrib/restricted/boost/lexical_cast/include/boost/lexical_cast.hpp | 18 | ||||
-rw-r--r-- | contrib/restricted/boost/lexical_cast/ya.make | 4 |
2 files changed, 20 insertions, 2 deletions
diff --git a/contrib/restricted/boost/lexical_cast/include/boost/lexical_cast.hpp b/contrib/restricted/boost/lexical_cast/include/boost/lexical_cast.hpp index d2838be986..2c8b773901 100644 --- a/contrib/restricted/boost/lexical_cast/include/boost/lexical_cast.hpp +++ b/contrib/restricted/boost/lexical_cast/include/boost/lexical_cast.hpp @@ -23,6 +23,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.LexicalCast 1.82 and will be removed in Boost.LexicalCast 1.84.") + +#endif + #if defined(BOOST_NO_STRINGSTREAM) || defined(BOOST_NO_STD_WSTRING) #define BOOST_LCAST_NO_WCHAR_T #endif diff --git a/contrib/restricted/boost/lexical_cast/ya.make b/contrib/restricted/boost/lexical_cast/ya.make index 48220c38b0..ed3b0d4a81 100644 --- a/contrib/restricted/boost/lexical_cast/ya.make +++ b/contrib/restricted/boost/lexical_cast/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/lexical_cast/archive/boost-1.82.0.tar.gz) +ORIGINAL_SOURCE(https://github.com/boostorg/lexical_cast/archive/boost-1.83.0.tar.gz) PEERDIR( contrib/restricted/boost/array |