diff options
author | vlad-kolotvin <vlad-kolotvin@yandex-team.ru> | 2022-02-10 16:48:20 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:48:20 +0300 |
commit | 9ff71a8b1ce582cb08730cb11eb25839441317d1 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /util/memory | |
parent | d26952c54d3ee92bbdc1888b64f3dec893e5a383 (diff) | |
download | ydb-9ff71a8b1ce582cb08730cb11eb25839441317d1.tar.gz |
Restoring authorship annotation for <vlad-kolotvin@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/memory')
-rw-r--r-- | util/memory/blob.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/util/memory/blob.h b/util/memory/blob.h index e5066859e2..20c02a68df 100644 --- a/util/memory/blob.h +++ b/util/memory/blob.h @@ -116,11 +116,11 @@ public: return !Length(); } - /// Checks if the blob owns data - Y_PURE_FUNCTION inline bool OwnsData() const noexcept { - return S_.Base != nullptr; - } - + /// Checks if the blob owns data + Y_PURE_FUNCTION inline bool OwnsData() const noexcept { + return S_.Base != nullptr; + } + /// Checks if the object has a data array. inline bool IsNull() const noexcept { return !Data(); |