diff options
| author | robot-piglet <[email protected]> | 2026-03-03 15:21:23 +0300 |
|---|---|---|
| committer | robot-piglet <[email protected]> | 2026-03-03 16:03:50 +0300 |
| commit | eb66a9584abe4b7eb91694cbefec33abe5a9b1d0 (patch) | |
| tree | fb2c2619d6f020dd0aff620f025e416b6c6993b1 /library/cpp/yt/memory | |
| parent | 371b5cde09e021fd6a46b4ed21b95428fb427099 (diff) | |
Intermediate changes
commit_hash:a66d1ef65085fb8e8bfe860b8b7a95cbc5793851
Diffstat (limited to 'library/cpp/yt/memory')
| -rw-r--r-- | library/cpp/yt/memory/unittests/weak_ptr_ut.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/yt/memory/unittests/weak_ptr_ut.cpp b/library/cpp/yt/memory/unittests/weak_ptr_ut.cpp index 4e09620bf45..cfb269d5f02 100644 --- a/library/cpp/yt/memory/unittests/weak_ptr_ut.cpp +++ b/library/cpp/yt/memory/unittests/weak_ptr_ut.cpp @@ -351,9 +351,9 @@ public: private: // Explicitly non-copyable. TIntricateObjectVirtual(const TIntricateObjectVirtual&); - TIntricateObjectVirtual(TIntricateObjectVirtual&&); + TIntricateObjectVirtual(TIntricateObjectVirtual&&) noexcept; TIntricateObjectVirtual& operator=(const TIntricateObjectVirtual&); - TIntricateObjectVirtual& operator=(TIntricateObjectVirtual&&); + TIntricateObjectVirtual& operator=(TIntricateObjectVirtual&&) noexcept; }; TEST_F(TWeakPtrTest, VirtualBase) |
