diff options
author | kiselyovp <kiselyovp@yandex-team.ru> | 2022-02-10 16:50:48 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:50:48 +0300 |
commit | 8caa5581c15f8f7d1e96a24d7be0260bad7d043f (patch) | |
tree | 7d11dd120ad5286cd5e8029336721feb02f83450 /library | |
parent | 000a0e5c3271c420cca3cdbe23f3c008f514bd90 (diff) | |
download | ydb-8caa5581c15f8f7d1e96a24d7be0260bad7d043f.tar.gz |
Restoring authorship annotation for <kiselyovp@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library')
-rw-r--r-- | library/cpp/yt/memory/ref.h | 2 | ||||
-rw-r--r-- | library/cpp/yt/misc/cast.h | 2 |
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..0e53019a24 100644 --- a/library/cpp/yt/memory/ref.h +++ b/library/cpp/yt/memory/ref.h @@ -154,7 +154,7 @@ public: //! Creates a TSharedRef for a part of existing range. TSharedRef Slice(size_t startOffset, size_t endOffset) const; - //! Creates a TSharedRef for a part of existing range. + //! Creates a TSharedRef for a part of existing range. TSharedRef Slice(const void* begin, const void* end) const; //! Creates a vector of slices with specified size. diff --git a/library/cpp/yt/misc/cast.h b/library/cpp/yt/misc/cast.h index c7565c9e6d..384a7281ee 100644 --- a/library/cpp/yt/misc/cast.h +++ b/library/cpp/yt/misc/cast.h @@ -15,7 +15,7 @@ T CheckedIntegralCast(S value); //////////////////////////////////////////////////////////////////////////////// template <class T, class S> -bool TryEnumCast(S value, T* result); +bool TryEnumCast(S value, T* result); template <class T, class S> T CheckedEnumCast(S value); |