diff options
| author | Dmitry Potapov <[email protected]> | 2022-02-10 16:46:39 +0300 |
|---|---|---|
| committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:46:39 +0300 |
| commit | 536101ea75c9ff5df10d01c2f460b1f6e12311b3 (patch) | |
| tree | 115291277ad61b2cdcf5044d210fb103b5e1647e /util/memory | |
| parent | 5036b5f2122001f9aef8a0e4cd85440d73ea6b9f (diff) | |
Restoring authorship annotation for Dmitry Potapov <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'util/memory')
| -rw-r--r-- | util/memory/blob.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util/memory/blob.cpp b/util/memory/blob.cpp index 91da5cadca3..879522ed479 100644 --- a/util/memory/blob.cpp +++ b/util/memory/blob.cpp @@ -363,7 +363,7 @@ static inline TBlob ConstructFromBuffer(TBuffer& in) { template <class TCounter> static inline TBlob ConstructFromStream(IInputStream& in) { - TBuffer buf; + TBuffer buf; { TBufferOutput out(buf); @@ -375,11 +375,11 @@ static inline TBlob ConstructFromStream(IInputStream& in) { } TBlob TBlob::FromStreamSingleThreaded(IInputStream& in) { - return ConstructFromStream<TSimpleCounter>(in); + return ConstructFromStream<TSimpleCounter>(in); } TBlob TBlob::FromStream(IInputStream& in) { - return ConstructFromStream<TAtomicCounter>(in); + return ConstructFromStream<TAtomicCounter>(in); } TBlob TBlob::FromBufferSingleThreaded(TBuffer& in) { |
