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 | d26952c54d3ee92bbdc1888b64f3dec893e5a383 (patch) | |
tree | 72e5a06ef50a8d3041aaa60f5d7c287025cf657d /util/memory | |
parent | 805923d9caf5cf5b7fd5f4aa268f783503260d62 (diff) | |
download | ydb-d26952c54d3ee92bbdc1888b64f3dec893e5a383.tar.gz |
Restoring authorship annotation for <vlad-kolotvin@yandex-team.ru>. Commit 1 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 20c02a68df..e5066859e2 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(); |