aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp
diff options
context:
space:
mode:
authorthegeorg <thegeorg@yandex-team.ru>2022-04-14 10:51:58 +0300
committerthegeorg <thegeorg@yandex-team.ru>2022-04-14 10:51:58 +0300
commit903697f538e65f1c283607ea08bdddc10a9e1cde (patch)
tree3cc205d893fc5829bb827bc75066cf1f689f867a /library/cpp
parent294e096403e4199169b25f935cb11b0b5933d381 (diff)
downloadydb-903697f538e65f1c283607ea08bdddc10a9e1cde.tar.gz
Fix -Wdeprecated-copy errors detected by clang14
ref:7b522d0dad8f0d64dd508e61325124ea9d2ebf30
Diffstat (limited to 'library/cpp')
-rw-r--r--library/cpp/yt/misc/guid.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/library/cpp/yt/misc/guid.h b/library/cpp/yt/misc/guid.h
index ec4ba3526a..1257a57dcf 100644
--- a/library/cpp/yt/misc/guid.h
+++ b/library/cpp/yt/misc/guid.h
@@ -55,6 +55,7 @@ struct TGuid
//! Copies an existing guid.
TGuid(const TGuid& other) = default;
+ TGuid& operator=(const TGuid& other) = default;
//! Checks if TGuid is zero.
bool IsEmpty() const;