diff options
| author | diver <[email protected]> | 2022-02-10 16:48:07 +0300 | 
|---|---|---|
| committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:48:07 +0300 | 
| commit | 7629e1f9ef7f9d2a3c345c97e6a4e5a4b32ee786 (patch) | |
| tree | c3371bfa47641a52244267b63009d16e4e7054ff /library/cpp/on_disk | |
| parent | cc573d2716c99ba22afc98753971cd97fd5283e0 (diff) | |
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/on_disk')
| -rw-r--r-- | library/cpp/on_disk/chunks/reader.cpp | 6 | ||||
| -rw-r--r-- | library/cpp/on_disk/chunks/reader.h | 6 | 
2 files changed, 6 insertions, 6 deletions
diff --git a/library/cpp/on_disk/chunks/reader.cpp b/library/cpp/on_disk/chunks/reader.cpp index 6e28cbf367d..4ae7f843eeb 100644 --- a/library/cpp/on_disk/chunks/reader.cpp +++ b/library/cpp/on_disk/chunks/reader.cpp @@ -47,6 +47,6 @@ TChunkedDataReader::TChunkedDataReader(const TBlob& blob) {      }  } -TBlob TChunkedDataReader::GetBlob(size_t index) const { -    return TBlob::NoCopy(GetBlock(index), GetBlockLen(index)); -} +TBlob TChunkedDataReader::GetBlob(size_t index) const {  +    return TBlob::NoCopy(GetBlock(index), GetBlockLen(index));  +}  diff --git a/library/cpp/on_disk/chunks/reader.h b/library/cpp/on_disk/chunks/reader.h index c5fe783319f..34690a58472 100644 --- a/library/cpp/on_disk/chunks/reader.h +++ b/library/cpp/on_disk/chunks/reader.h @@ -28,16 +28,16 @@ public:          return Lengths[index];      } - +       TBlob GetBlob(size_t index) const; - +       template <typename T>      TArrayRef<const T> GetRegion(size_t index) const {          size_t len = GetBlockLen(index);          Y_ENSURE(len % sizeof(T) == 0, "wrong data padding");          return TArrayRef<const T>(reinterpret_cast<const T*>(GetBlock(index)), len / sizeof(T));      } - +       inline size_t GetBlocksCount() const {          return Offsets.size();      }  | 
