diff options
author | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-04-20 17:55:28 +0300 |
---|---|---|
committer | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-04-20 17:55:28 +0300 |
commit | e3cf5e1d7380e3763f4aa5a0edb8e4a7b011c3b8 (patch) | |
tree | 5b522f7d6fab415363bf7ee70bcd258b4b2a506a /library/cpp/yt | |
parent | 31ff69685d432e9506ba2cad2e4cb05528021282 (diff) | |
download | ydb-e3cf5e1d7380e3763f4aa5a0edb8e4a7b011c3b8.tar.gz |
intermediate changes
ref:f2243b78f0917d7ce3c70b9377e96b0489c800c5
Diffstat (limited to 'library/cpp/yt')
-rw-r--r-- | library/cpp/yt/misc/guid.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/yt/misc/guid.h b/library/cpp/yt/misc/guid.h index 1257a57dcf..ce024885f7 100644 --- a/library/cpp/yt/misc/guid.h +++ b/library/cpp/yt/misc/guid.h @@ -54,8 +54,8 @@ struct TGuid constexpr TGuid(ui64 part0, ui64 part1); //! Copies an existing guid. - TGuid(const TGuid& other) = default; - TGuid& operator=(const TGuid& other) = default; + constexpr TGuid(const TGuid& other) noexcept = default; + constexpr TGuid& operator=(const TGuid& other) noexcept = default; //! Checks if TGuid is zero. bool IsEmpty() const; |