diff options
author | robot-contrib <robot-contrib@yandex-team.com> | 2025-04-26 11:43:47 +0300 |
---|---|---|
committer | robot-contrib <robot-contrib@yandex-team.com> | 2025-04-26 14:03:31 +0300 |
commit | 3db882a9b05d9fbc3850c4d055c5b9921acaa669 (patch) | |
tree | 533aef884992dacc6d78f143070ea4a9e949325e /contrib | |
parent | c6e258784406413808218591b62b30764c583c2b (diff) | |
download | ydb-3db882a9b05d9fbc3850c4d055c5b9921acaa669.tar.gz |
Update contrib/restricted/boost/thread to 1.88.0
commit_hash:72d100073977c01253631e527d0c32431afa6a3b
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/restricted/boost/thread/.yandex_meta/default.nix | 4 | ||||
-rw-r--r-- | contrib/restricted/boost/thread/include/boost/thread/future.hpp | 2 | ||||
-rw-r--r-- | contrib/restricted/boost/thread/ya.make | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/contrib/restricted/boost/thread/.yandex_meta/default.nix b/contrib/restricted/boost/thread/.yandex_meta/default.nix index ffc274d9e5a..a9010697a26 100644 --- a/contrib/restricted/boost/thread/.yandex_meta/default.nix +++ b/contrib/restricted/boost/thread/.yandex_meta/default.nix @@ -1,13 +1,13 @@ self: super: with self; { boost_thread = stdenv.mkDerivation rec { pname = "boost_thread"; - version = "1.87.0"; + version = "1.88.0"; src = fetchFromGitHub { owner = "boostorg"; repo = "thread"; rev = "boost-${version}"; - hash = "sha256-b/71ovr7i4YorEnFSYHXwYgv4fgSWUobCORaX7hmxmw="; + hash = "sha256-H9iOI5SHWv893L/opKS9eDQNpzSkwnx4CW51b+ilOGM="; }; }; } diff --git a/contrib/restricted/boost/thread/include/boost/thread/future.hpp b/contrib/restricted/boost/thread/include/boost/thread/future.hpp index 00f504b9b8a..d15d7ffa54a 100644 --- a/contrib/restricted/boost/thread/include/boost/thread/future.hpp +++ b/contrib/restricted/boost/thread/include/boost/thread/future.hpp @@ -4668,7 +4668,7 @@ namespace detail } run_it& operator=(BOOST_THREAD_RV_REF(run_it) x) BOOST_NOEXCEPT { if (this != &x) { - that_=x.that; + that_=x.that_; x.that_.reset(); } return *this; diff --git a/contrib/restricted/boost/thread/ya.make b/contrib/restricted/boost/thread/ya.make index 5c328bdbbaf..bdc3b07b050 100644 --- a/contrib/restricted/boost/thread/ya.make +++ b/contrib/restricted/boost/thread/ya.make @@ -10,9 +10,9 @@ LICENSE( LICENSE_TEXTS(.yandex_meta/licenses.list.txt) -VERSION(1.87.0) +VERSION(1.88.0) -ORIGINAL_SOURCE(https://github.com/boostorg/thread/archive/boost-1.87.0.tar.gz) +ORIGINAL_SOURCE(https://github.com/boostorg/thread/archive/boost-1.88.0.tar.gz) PEERDIR( contrib/restricted/boost/assert |