diff options
| author | ignat <[email protected]> | 2022-02-10 16:48:20 +0300 |
|---|---|---|
| committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:48:20 +0300 |
| commit | c8b279dd21ddcb47e755028d81281f113a0f4a11 (patch) | |
| tree | 59384fcb7e8e0566cac1ed9738ab30f0b2559b58 /library/cpp/yt/memory/ref.cpp | |
| parent | 2096e85a73bb6b3b20ae25a92943992717fe4167 (diff) | |
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/yt/memory/ref.cpp')
| -rw-r--r-- | library/cpp/yt/memory/ref.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/library/cpp/yt/memory/ref.cpp b/library/cpp/yt/memory/ref.cpp index e8ff42e9760..c84a1f3f96d 100644 --- a/library/cpp/yt/memory/ref.cpp +++ b/library/cpp/yt/memory/ref.cpp @@ -5,8 +5,8 @@ #include <util/system/info.h> -namespace NYT { - +namespace NYT { + //////////////////////////////////////////////////////////////////////////////// namespace NDetail { @@ -275,20 +275,20 @@ TString ToString(TRef ref) } TString ToString(const TMutableRef& ref) -{ - return ToString(TRef(ref)); -} - +{ + return ToString(TRef(ref)); +} + TString ToString(const TSharedRef& ref) { return ToString(TRef(ref)); } TString ToString(const TSharedMutableRef& ref) -{ - return ToString(TRef(ref)); -} - +{ + return ToString(TRef(ref)); +} + size_t GetPageSize() { static const size_t PageSize = NSystemInfo::GetPageSize(); @@ -375,4 +375,4 @@ TSharedRefArray TSharedRefArrayBuilder::Finish() //////////////////////////////////////////////////////////////////////////////// -} // namespace NYT +} // namespace NYT |
