diff options
author | gritukan <gritukan@yandex-team.ru> | 2022-02-10 16:47:54 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:47:54 +0300 |
commit | e72b2fbecff9bceacda41e0dde32e742cfb31592 (patch) | |
tree | c0748b5dcbade83af788c0abfa89c0383d6b779c /library/cpp/yt/memory/ref-inl.h | |
parent | 5ab2c1182d0b02a3880e1869c6351b7ba802a19b (diff) | |
download | ydb-e72b2fbecff9bceacda41e0dde32e742cfb31592.tar.gz |
Restoring authorship annotation for <gritukan@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/yt/memory/ref-inl.h')
-rw-r--r-- | library/cpp/yt/memory/ref-inl.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/library/cpp/yt/memory/ref-inl.h b/library/cpp/yt/memory/ref-inl.h index 70fc8ae29d..79be8356c5 100644 --- a/library/cpp/yt/memory/ref-inl.h +++ b/library/cpp/yt/memory/ref-inl.h @@ -461,11 +461,11 @@ Y_FORCE_INLINE size_t TSharedRefArray::Size() const return Impl_ ? Impl_->Size() : 0; } -Y_FORCE_INLINE size_t TSharedRefArray::size() const -{ - return Impl_ ? Impl_->Size() : 0; -} - +Y_FORCE_INLINE size_t TSharedRefArray::size() const +{ + return Impl_ ? Impl_->Size() : 0; +} + Y_FORCE_INLINE bool TSharedRefArray::Empty() const { return Impl_ ? Impl_->Empty() : true; |