diff options
author | antervis <antervis@yandex-team.ru> | 2022-02-10 16:49:48 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:48 +0300 |
commit | b3eef5b52437f05851a3e8fb489a68db0132657b (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/threading/future/core | |
parent | 0942f9eeaefcfc84db83fa240d8ed52b99345e7d (diff) | |
download | ydb-b3eef5b52437f05851a3e8fb489a68db0132657b.tar.gz |
Restoring authorship annotation for <antervis@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/threading/future/core')
-rw-r--r-- | library/cpp/threading/future/core/future.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/library/cpp/threading/future/core/future.h b/library/cpp/threading/future/core/future.h index d65c4895e2..2e82bb953e 100644 --- a/library/cpp/threading/future/core/future.h +++ b/library/cpp/threading/future/core/future.h @@ -78,11 +78,11 @@ namespace NThreading { TFuture() noexcept = default; TFuture(const TFuture<T>& other) noexcept = default; - TFuture(TFuture<T>&& other) noexcept = default; + TFuture(TFuture<T>&& other) noexcept = default; TFuture(const TIntrusivePtr<TFutureState>& state) noexcept; TFuture<T>& operator=(const TFuture<T>& other) noexcept = default; - TFuture<T>& operator=(TFuture<T>&& other) noexcept = default; + TFuture<T>& operator=(TFuture<T>&& other) noexcept = default; void Swap(TFuture<T>& other); bool Initialized() const; @@ -135,11 +135,11 @@ namespace NThreading { TFuture() noexcept = default; TFuture(const TFuture<void>& other) noexcept = default; - TFuture(TFuture<void>&& other) noexcept = default; + TFuture(TFuture<void>&& other) noexcept = default; TFuture(const TIntrusivePtr<TFutureState>& state) noexcept; TFuture<void>& operator=(const TFuture<void>& other) noexcept = default; - TFuture<void>& operator=(TFuture<void>&& other) noexcept = default; + TFuture<void>& operator=(TFuture<void>&& other) noexcept = default; void Swap(TFuture<void>& other); bool Initialized() const; @@ -193,11 +193,11 @@ namespace NThreading { public: TPromise() noexcept = default; TPromise(const TPromise<T>& other) noexcept = default; - TPromise(TPromise<T>&& other) noexcept = default; + TPromise(TPromise<T>&& other) noexcept = default; TPromise(const TIntrusivePtr<TFutureState>& state) noexcept; TPromise<T>& operator=(const TPromise<T>& other) noexcept = default; - TPromise<T>& operator=(TPromise<T>&& other) noexcept = default; + TPromise<T>& operator=(TPromise<T>&& other) noexcept = default; void Swap(TPromise<T>& other); bool Initialized() const; @@ -237,11 +237,11 @@ namespace NThreading { public: TPromise() noexcept = default; TPromise(const TPromise<void>& other) noexcept = default; - TPromise(TPromise<void>&& other) noexcept = default; + TPromise(TPromise<void>&& other) noexcept = default; TPromise(const TIntrusivePtr<TFutureState>& state) noexcept; TPromise<void>& operator=(const TPromise<void>& other) noexcept = default; - TPromise<void>& operator=(TPromise<void>&& other) noexcept = default; + TPromise<void>& operator=(TPromise<void>&& other) noexcept = default; void Swap(TPromise<void>& other); bool Initialized() const; |