diff options
author | robot-contrib <robot-contrib@yandex-team.com> | 2025-04-26 11:42:32 +0300 |
---|---|---|
committer | robot-contrib <robot-contrib@yandex-team.com> | 2025-04-26 13:17:15 +0300 |
commit | 471ef4312daa3650ce4de82ec6892a452119d98c (patch) | |
tree | d4b32111ec437cfd64f28f84c5258ed77458f78d /contrib | |
parent | d5fbbd4c52f0588b3d6830ab3176cef4f2dbcdf9 (diff) | |
download | ydb-471ef4312daa3650ce4de82ec6892a452119d98c.tar.gz |
Update contrib/restricted/boost/conversion to 1.88.0
commit_hash:4ba556cdc948fd9c42adbdcf29bdd94c64a74e0b
Diffstat (limited to 'contrib')
7 files changed, 18 insertions, 18 deletions
diff --git a/contrib/restricted/boost/conversion/.yandex_meta/default.nix b/contrib/restricted/boost/conversion/.yandex_meta/default.nix index 7f273c5f0f7..1edf3b4986b 100644 --- a/contrib/restricted/boost/conversion/.yandex_meta/default.nix +++ b/contrib/restricted/boost/conversion/.yandex_meta/default.nix @@ -1,13 +1,13 @@ self: super: with self; { boost_conversion = stdenv.mkDerivation rec { pname = "boost_conversion"; - version = "1.87.0"; + version = "1.88.0"; src = fetchFromGitHub { owner = "boostorg"; repo = "conversion"; rev = "boost-${version}"; - hash = "sha256-STQcRLg4FPxQ3MxMPx2IsqVV0PoyAPgGHfv+EeluyXs="; + hash = "sha256-mCKzZxY1OiK9B/s5CJQjY47C4mnC8OtQf9hAeECpBjE="; }; }; } diff --git a/contrib/restricted/boost/conversion/.yandex_meta/devtools.copyrights.report b/contrib/restricted/boost/conversion/.yandex_meta/devtools.copyrights.report index b3a9c8a2450..7d9a2883b07 100644 --- a/contrib/restricted/boost/conversion/.yandex_meta/devtools.copyrights.report +++ b/contrib/restricted/boost/conversion/.yandex_meta/devtools.copyrights.report @@ -33,11 +33,11 @@ # FILE_INCLUDE - include all file data into licenses text file # ======================= -KEEP COPYRIGHT_SERVICE_LABEL bb3eb4b4e302dcb6634d591111603d92 +KEEP COPYRIGHT_SERVICE_LABEL aad3a26c5dd6db876008a9bb69f2861a BELONGS ya.make License text: // (C) Copyright Boris Rasin, 2014-2021. - // (C) Copyright Antony Polukhin, 2014-2024. + // (C) Copyright Antony Polukhin, 2014-2025. // Distributed under the Boost // Software License, Version 1.0. (See accompanying file Scancode info: @@ -47,11 +47,11 @@ BELONGS ya.make Files with this license: include/boost/polymorphic_pointer_cast.hpp [2:5] -KEEP COPYRIGHT_SERVICE_LABEL caf6818f96cbd63eb0a359a0d1dd3ac5 +KEEP COPYRIGHT_SERVICE_LABEL bb3eb4b4e302dcb6634d591111603d92 BELONGS ya.make License text: - // (C) Copyright Kevlin Henney and Dave Abrahams 1999. - // (C) Copyright Boris Rasin 2014. + // (C) Copyright Boris Rasin, 2014-2021. + // (C) Copyright Antony Polukhin, 2014-2025. // Distributed under the Boost // Software License, Version 1.0. (See accompanying file Scancode info: @@ -59,13 +59,13 @@ BELONGS ya.make Score : 100.00 Match type : COPYRIGHT Files with this license: - include/boost/polymorphic_cast.hpp [3:6] + include/boost/polymorphic_pointer_cast.hpp [2:5] -KEEP COPYRIGHT_SERVICE_LABEL f00e05e104061d3694899e6a7035fb29 +KEEP COPYRIGHT_SERVICE_LABEL caf6818f96cbd63eb0a359a0d1dd3ac5 BELONGS ya.make License text: - // (C) Copyright Boris Rasin, 2014-2021. - // (C) Copyright Antony Polukhin, 2014-2024. + // (C) Copyright Kevlin Henney and Dave Abrahams 1999. + // (C) Copyright Boris Rasin 2014. // Distributed under the Boost // Software License, Version 1.0. (See accompanying file Scancode info: @@ -73,7 +73,7 @@ BELONGS ya.make Score : 100.00 Match type : COPYRIGHT Files with this license: - include/boost/polymorphic_pointer_cast.hpp [2:5] + include/boost/polymorphic_cast.hpp [3:6] KEEP COPYRIGHT_SERVICE_LABEL f737ed06addb0e3798f6d97ca33809b1 BELONGS ya.make diff --git a/contrib/restricted/boost/conversion/.yandex_meta/licenses.list.txt b/contrib/restricted/boost/conversion/.yandex_meta/licenses.list.txt index d152452b210..8f718774560 100644 --- a/contrib/restricted/boost/conversion/.yandex_meta/licenses.list.txt +++ b/contrib/restricted/boost/conversion/.yandex_meta/licenses.list.txt @@ -17,7 +17,7 @@ Distributed under the [Boost Software License, Version 1.0](https://boost.org/LI ====================COPYRIGHT==================== // (C) Copyright Boris Rasin, 2014-2021. -// (C) Copyright Antony Polukhin, 2014-2024. +// (C) Copyright Antony Polukhin, 2014-2025. // Distributed under the Boost // Software License, Version 1.0. (See accompanying file diff --git a/contrib/restricted/boost/conversion/include/boost/implicit_cast.hpp b/contrib/restricted/boost/conversion/include/boost/implicit_cast.hpp index f0dd972c250..678195b0917 100644 --- a/contrib/restricted/boost/conversion/include/boost/implicit_cast.hpp +++ b/contrib/restricted/boost/conversion/include/boost/implicit_cast.hpp @@ -17,7 +17,7 @@ namespace detail { template<class T> struct icast_identity { - typedef T type; + using type = T; }; } // namespace detail diff --git a/contrib/restricted/boost/conversion/include/boost/polymorphic_cast.hpp b/contrib/restricted/boost/conversion/include/boost/polymorphic_cast.hpp index 818a0fe51fa..dd9b194969f 100644 --- a/contrib/restricted/boost/conversion/include/boost/polymorphic_cast.hpp +++ b/contrib/restricted/boost/conversion/include/boost/polymorphic_cast.hpp @@ -113,7 +113,7 @@ namespace boost std::is_reference<Target>::value, Target >::type polymorphic_downcast(Source& x) { - typedef typename std::remove_reference<Target>::type* target_pointer_type; + using target_pointer_type = typename std::remove_reference<Target>::type*; return *boost::polymorphic_downcast<target_pointer_type>( std::addressof(x) ); diff --git a/contrib/restricted/boost/conversion/include/boost/polymorphic_pointer_cast.hpp b/contrib/restricted/boost/conversion/include/boost/polymorphic_pointer_cast.hpp index efb355befaf..640d1f16e5d 100644 --- a/contrib/restricted/boost/conversion/include/boost/polymorphic_pointer_cast.hpp +++ b/contrib/restricted/boost/conversion/include/boost/polymorphic_pointer_cast.hpp @@ -1,6 +1,6 @@ // boost polymorphic_pointer_cast.hpp header file ----------------------------------------------// // (C) Copyright Boris Rasin, 2014-2021. -// (C) Copyright Antony Polukhin, 2014-2024. +// (C) Copyright Antony Polukhin, 2014-2025. // Distributed under the Boost // Software License, Version 1.0. (See accompanying file // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) diff --git a/contrib/restricted/boost/conversion/ya.make b/contrib/restricted/boost/conversion/ya.make index ad542c166aa..4af6f0e13c5 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.87.0) +VERSION(1.88.0) -ORIGINAL_SOURCE(https://github.com/boostorg/conversion/archive/boost-1.87.0.tar.gz) +ORIGINAL_SOURCE(https://github.com/boostorg/conversion/archive/boost-1.88.0.tar.gz) PEERDIR( contrib/restricted/boost/assert |