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
commita17cede06970d9a290b04aac822afb40a7c2aa86 (patch)
treecafc8248e5e485600fad3b55cbbee92a5179de3d /library/cpp/yt/memory
parentcdd0799465ab07b2689e623e8db9cd333b01e0dc (diff)
downloadydb-a17cede06970d9a290b04aac822afb40a7c2aa86.tar.gz
Restoring authorship annotation for <arivkin@yandex-team.ru>. Commit 1 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 73d19d9013..0c6c88417b 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 75c1eb5985..7241f2bf48 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.
*/