aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp
diff options
context:
space:
mode:
authorarkady-e1ppa <arkady-e1ppa@yandex-team.com>2024-11-14 12:08:09 +0300
committerarkady-e1ppa <arkady-e1ppa@yandex-team.com>2024-11-14 12:22:27 +0300
commite667baaa857655a17da06aaf7ca0188e3f0178d8 (patch)
tree2ca5bfe0a5ed81353953f61d67cfe9ea2823ce2c /library/cpp
parentff08899f35c35434c56cfb49f1d6d849ed91d228 (diff)
downloadydb-e667baaa857655a17da06aaf7ca0188e3f0178d8.tar.gz
Fix babenko issues of rXXXXXX
[nodiff:caesar] commit_hash:93eef00a7132e68e727aa1f4028616db6522d03c
Diffstat (limited to 'library/cpp')
-rw-r--r--library/cpp/yt/threading/atomic_object-inl.h4
-rw-r--r--library/cpp/yt/threading/atomic_object.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/library/cpp/yt/threading/atomic_object-inl.h b/library/cpp/yt/threading/atomic_object-inl.h
index 452f5a0bc7..fc8238cc83 100644
--- a/library/cpp/yt/threading/atomic_object-inl.h
+++ b/library/cpp/yt/threading/atomic_object-inl.h
@@ -4,7 +4,7 @@
#include "atomic_object.h"
#endif
-namespace NYT {
+namespace NYT::NThreading {
////////////////////////////////////////////////////////////////////////////////
@@ -94,4 +94,4 @@ void FromProto(TAtomicObject<TOriginal>* original, const TSerialized& serialized
////////////////////////////////////////////////////////////////////////////////
-} // namespace NYT
+} // namespace NYT::NThreading
diff --git a/library/cpp/yt/threading/atomic_object.h b/library/cpp/yt/threading/atomic_object.h
index e986f872a0..232a567e2d 100644
--- a/library/cpp/yt/threading/atomic_object.h
+++ b/library/cpp/yt/threading/atomic_object.h
@@ -4,7 +4,7 @@
#include <concepts>
-namespace NYT {
+namespace NYT::NThreading {
////////////////////////////////////////////////////////////////////////////////
@@ -56,7 +56,7 @@ void FromProto(TAtomicObject<TOriginal>* original, const TSerialized& serialized
////////////////////////////////////////////////////////////////////////////////
-} // namespace NYT
+} // namespace NYT::NThreading
#define ATOMIC_OBJECT_INL_H_
#include "atomic_object-inl.h"