summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrobot-contrib <[email protected]>2023-12-16 23:55:41 +0300
committerrobot-contrib <[email protected]>2023-12-17 00:32:07 +0300
commit22193fc96a505691e99c0c7ba882533a9d6927c5 (patch)
tree13495918cc5ceb580111d8b8d890ed13f17de29e
parentd69bee97bd68a2689ea0ea66169e7e7472d8a6da (diff)
Update contrib/restricted/boost/conversion to 1.84.0
-rw-r--r--contrib/restricted/boost/conversion/CMakeLists.darwin-arm64.txt3
-rw-r--r--contrib/restricted/boost/conversion/CMakeLists.darwin-x86_64.txt3
-rw-r--r--contrib/restricted/boost/conversion/CMakeLists.linux-aarch64.txt3
-rw-r--r--contrib/restricted/boost/conversion/CMakeLists.linux-x86_64.txt3
-rw-r--r--contrib/restricted/boost/conversion/CMakeLists.windows-x86_64.txt3
-rw-r--r--contrib/restricted/boost/conversion/include/boost/implicit_cast.hpp20
-rw-r--r--contrib/restricted/boost/conversion/ya.make7
7 files changed, 3 insertions, 39 deletions
diff --git a/contrib/restricted/boost/conversion/CMakeLists.darwin-arm64.txt b/contrib/restricted/boost/conversion/CMakeLists.darwin-arm64.txt
index f1a53fd123f..a6b3440bb0e 100644
--- a/contrib/restricted/boost/conversion/CMakeLists.darwin-arm64.txt
+++ b/contrib/restricted/boost/conversion/CMakeLists.darwin-arm64.txt
@@ -15,9 +15,6 @@ target_link_libraries(restricted-boost-conversion INTERFACE
contrib-libs-cxxsupp
restricted-boost-assert
restricted-boost-config
- restricted-boost-core
restricted-boost-smart_ptr
restricted-boost-throw_exception
- restricted-boost-type_traits
- restricted-boost-typeof
)
diff --git a/contrib/restricted/boost/conversion/CMakeLists.darwin-x86_64.txt b/contrib/restricted/boost/conversion/CMakeLists.darwin-x86_64.txt
index f1a53fd123f..a6b3440bb0e 100644
--- a/contrib/restricted/boost/conversion/CMakeLists.darwin-x86_64.txt
+++ b/contrib/restricted/boost/conversion/CMakeLists.darwin-x86_64.txt
@@ -15,9 +15,6 @@ target_link_libraries(restricted-boost-conversion INTERFACE
contrib-libs-cxxsupp
restricted-boost-assert
restricted-boost-config
- restricted-boost-core
restricted-boost-smart_ptr
restricted-boost-throw_exception
- restricted-boost-type_traits
- restricted-boost-typeof
)
diff --git a/contrib/restricted/boost/conversion/CMakeLists.linux-aarch64.txt b/contrib/restricted/boost/conversion/CMakeLists.linux-aarch64.txt
index ccc6337d05c..37b10b7537a 100644
--- a/contrib/restricted/boost/conversion/CMakeLists.linux-aarch64.txt
+++ b/contrib/restricted/boost/conversion/CMakeLists.linux-aarch64.txt
@@ -16,9 +16,6 @@ target_link_libraries(restricted-boost-conversion INTERFACE
contrib-libs-cxxsupp
restricted-boost-assert
restricted-boost-config
- restricted-boost-core
restricted-boost-smart_ptr
restricted-boost-throw_exception
- restricted-boost-type_traits
- restricted-boost-typeof
)
diff --git a/contrib/restricted/boost/conversion/CMakeLists.linux-x86_64.txt b/contrib/restricted/boost/conversion/CMakeLists.linux-x86_64.txt
index ccc6337d05c..37b10b7537a 100644
--- a/contrib/restricted/boost/conversion/CMakeLists.linux-x86_64.txt
+++ b/contrib/restricted/boost/conversion/CMakeLists.linux-x86_64.txt
@@ -16,9 +16,6 @@ target_link_libraries(restricted-boost-conversion INTERFACE
contrib-libs-cxxsupp
restricted-boost-assert
restricted-boost-config
- restricted-boost-core
restricted-boost-smart_ptr
restricted-boost-throw_exception
- restricted-boost-type_traits
- restricted-boost-typeof
)
diff --git a/contrib/restricted/boost/conversion/CMakeLists.windows-x86_64.txt b/contrib/restricted/boost/conversion/CMakeLists.windows-x86_64.txt
index f1a53fd123f..a6b3440bb0e 100644
--- a/contrib/restricted/boost/conversion/CMakeLists.windows-x86_64.txt
+++ b/contrib/restricted/boost/conversion/CMakeLists.windows-x86_64.txt
@@ -15,9 +15,6 @@ target_link_libraries(restricted-boost-conversion INTERFACE
contrib-libs-cxxsupp
restricted-boost-assert
restricted-boost-config
- restricted-boost-core
restricted-boost-smart_ptr
restricted-boost-throw_exception
- restricted-boost-type_traits
- restricted-boost-typeof
)
diff --git a/contrib/restricted/boost/conversion/include/boost/implicit_cast.hpp b/contrib/restricted/boost/conversion/include/boost/implicit_cast.hpp
index c134d712dce..f0dd972c250 100644
--- a/contrib/restricted/boost/conversion/include/boost/implicit_cast.hpp
+++ b/contrib/restricted/boost/conversion/include/boost/implicit_cast.hpp
@@ -11,24 +11,6 @@
# 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 {
@@ -46,7 +28,7 @@ template<class T> struct icast_identity
// The use of identity creates a non-deduced form, so that the
// explicit template argument must be supplied
template <typename T>
-BOOST_CONSTEXPR inline T implicit_cast (typename boost::detail::icast_identity<T>::type x) {
+constexpr T implicit_cast (typename boost::detail::icast_identity<T>::type x) {
return x;
}
diff --git a/contrib/restricted/boost/conversion/ya.make b/contrib/restricted/boost/conversion/ya.make
index 08997903f22..5346d3939d5 100644
--- a/contrib/restricted/boost/conversion/ya.make
+++ b/contrib/restricted/boost/conversion/ya.make
@@ -6,18 +6,15 @@ LICENSE(BSL-1.0)
LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
-VERSION(1.83.0)
+VERSION(1.84.0)
-ORIGINAL_SOURCE(https://github.com/boostorg/conversion/archive/boost-1.83.0.tar.gz)
+ORIGINAL_SOURCE(https://github.com/boostorg/conversion/archive/boost-1.84.0.tar.gz)
PEERDIR(
contrib/restricted/boost/assert
contrib/restricted/boost/config
- contrib/restricted/boost/core
contrib/restricted/boost/smart_ptr
contrib/restricted/boost/throw_exception
- contrib/restricted/boost/type_traits
- contrib/restricted/boost/typeof
)
ADDINCL(