aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp
diff options
context:
space:
mode:
authorarcadia-devtools <arcadia-devtools@yandex-team.ru>2022-04-20 17:55:28 +0300
committerarcadia-devtools <arcadia-devtools@yandex-team.ru>2022-04-20 17:55:28 +0300
commite3cf5e1d7380e3763f4aa5a0edb8e4a7b011c3b8 (patch)
tree5b522f7d6fab415363bf7ee70bcd258b4b2a506a /library/cpp
parent31ff69685d432e9506ba2cad2e4cb05528021282 (diff)
downloadydb-e3cf5e1d7380e3763f4aa5a0edb8e4a7b011c3b8.tar.gz
intermediate changes
ref:f2243b78f0917d7ce3c70b9377e96b0489c800c5
Diffstat (limited to 'library/cpp')
-rw-r--r--library/cpp/yt/misc/guid.h4
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;