summaryrefslogtreecommitdiffstats
path: root/util/stream/str.cpp
diff options
context:
space:
mode:
authoragorodilov <[email protected]>2022-02-10 16:47:09 +0300
committerDaniil Cherednik <[email protected]>2022-02-10 16:47:09 +0300
commitbd5ef432f5cfb1e18851381329d94665a4c22470 (patch)
treeb83306b6e37edeea782e9eed673d89286c4fef35 /util/stream/str.cpp
parent7a4979e6211c3e78c7f9041d4a9e5d3405343c36 (diff)
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'util/stream/str.cpp')
-rw-r--r--util/stream/str.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/util/stream/str.cpp b/util/stream/str.cpp
index 09ef0b911e0..13f0e8ef289 100644
--- a/util/stream/str.cpp
+++ b/util/stream/str.cpp
@@ -2,7 +2,7 @@
static constexpr size_t MIN_BUFFER_GROW_SIZE = 16;
-TStringInput::~TStringInput() = default;
+TStringInput::~TStringInput() = default;
size_t TStringInput::DoNext(const void** ptr, size_t len) {
len = Min(len, S_->size() - Pos_);
@@ -16,7 +16,7 @@ void TStringInput::DoUndo(size_t len) {
Pos_ -= len;
}
-TStringOutput::~TStringOutput() = default;
+TStringOutput::~TStringOutput() = default;
size_t TStringOutput::DoNext(void** ptr) {
if (S_->size() == S_->capacity()) {
@@ -41,4 +41,4 @@ void TStringOutput::DoWriteC(char c) {
S_->push_back(c);
}
-TStringStream::~TStringStream() = default;
+TStringStream::~TStringStream() = default;