aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/yt/memory
diff options
context:
space:
mode:
authorarivkin <arivkin@yandex-team.ru>2022-02-10 16:50:49 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:50:49 +0300
commite42ca7b119fc94cd6e48efec40dfb65a98db7677 (patch)
tree5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/yt/memory
parenta17cede06970d9a290b04aac822afb40a7c2aa86 (diff)
downloadydb-e42ca7b119fc94cd6e48efec40dfb65a98db7677.tar.gz
Restoring authorship annotation for <arivkin@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/yt/memory')
-rw-r--r--library/cpp/yt/memory/ref.h2
-rw-r--r--library/cpp/yt/memory/ref_tracked.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/yt/memory/ref.h b/library/cpp/yt/memory/ref.h
index 0c6c88417b..73d19d9013 100644
--- a/library/cpp/yt/memory/ref.h
+++ b/library/cpp/yt/memory/ref.h
@@ -29,7 +29,7 @@ public:
//! Creates an empty TRef.
static TRef MakeEmpty();
-
+
//! Creates a non-owning TRef for a given blob.
static TRef FromBlob(const TBlob& blob);
diff --git a/library/cpp/yt/memory/ref_tracked.h b/library/cpp/yt/memory/ref_tracked.h
index 7241f2bf48..75c1eb5985 100644
--- a/library/cpp/yt/memory/ref_tracked.h
+++ b/library/cpp/yt/memory/ref_tracked.h
@@ -67,7 +67,7 @@ TRefCountedTypeCookie GetRefCountedTypeCookieWithLocation(
//! A lightweight mix-in that integrates any class into TRefCountedTracker statistics.
/*!
* |T| must be the actual derived type.
- *
+ *
* This mix-in provides statistical tracking only, |T| is responsible for implementing
* lifetime management on its own.
*/