diff options
| author | yazevnul <[email protected]> | 2022-02-10 16:46:48 +0300 | 
|---|---|---|
| committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:46:48 +0300 | 
| commit | 9abfb1a53b7f7b791444d1378e645d8fad9b06ed (patch) | |
| tree | 49e222ea1c5804306084bb3ae065bb702625360f /library/cpp/binsaver/buffered_io.cpp | |
| parent | 8cbc307de0221f84c80c42dcbe07d40727537e2c (diff) | |
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/binsaver/buffered_io.cpp')
| -rw-r--r-- | library/cpp/binsaver/buffered_io.cpp | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/library/cpp/binsaver/buffered_io.cpp b/library/cpp/binsaver/buffered_io.cpp index 073ba0c46ee..dd88b04bc5d 100644 --- a/library/cpp/binsaver/buffered_io.cpp +++ b/library/cpp/binsaver/buffered_io.cpp @@ -1,31 +1,31 @@  #include "buffered_io.h"  i64 IBinaryStream::LongWrite(const void* userBuffer, i64 size) { -    Y_VERIFY(size >= 0, "IBinaryStream::Write() called with a negative buffer size.");  +    Y_VERIFY(size >= 0, "IBinaryStream::Write() called with a negative buffer size.");      i64 leftToWrite = size;      while (leftToWrite != 0) {          int writeSz = static_cast<int>(Min<i64>(leftToWrite, std::numeric_limits<int>::max()));          int written = WriteImpl(userBuffer, writeSz); -        Y_ASSERT(written <= writeSz);  +        Y_ASSERT(written <= writeSz);          leftToWrite -= written;          // Assumption: if WriteImpl(buf, writeSz) returns < writeSz, the stream is          // full and there's no sense in continuing.          if (written < writeSz)              break;      } -    Y_ASSERT(size >= leftToWrite);  +    Y_ASSERT(size >= leftToWrite);      return size - leftToWrite;  }  i64 IBinaryStream::LongRead(void* userBuffer, i64 size) { -    Y_VERIFY(size >= 0, "IBinaryStream::Read() called with a negative buffer size.");  +    Y_VERIFY(size >= 0, "IBinaryStream::Read() called with a negative buffer size.");      i64 leftToRead = size;      while (leftToRead != 0) {          int readSz = static_cast<int>(Min<i64>(leftToRead, std::numeric_limits<int>::max()));          int read = ReadImpl(userBuffer, readSz); -        Y_ASSERT(read <= readSz);  +        Y_ASSERT(read <= readSz);          leftToRead -= read;          // Assumption: if ReadImpl(buf, readSz) returns < readSz, the stream is          // full and there's no sense in continuing. @@ -34,6 +34,6 @@ i64 IBinaryStream::LongRead(void* userBuffer, i64 size) {              break;          }      } -    Y_ASSERT(size >= leftToRead);  +    Y_ASSERT(size >= leftToRead);      return size - leftToRead;  } | 
