summaryrefslogtreecommitdiffstats
path: root/util/stream/multi.cpp
diff options
context:
space:
mode:
authorAnton Samokhvalov <[email protected]>2022-02-10 16:45:17 +0300
committerDaniil Cherednik <[email protected]>2022-02-10 16:45:17 +0300
commitd3a398281c6fd1d3672036cb2d63f842d2cb28c5 (patch)
treedd4bd3ca0f36b817e96812825ffaf10d645803f2 /util/stream/multi.cpp
parent72cb13b4aff9bc9cf22e49251bc8fd143f82538f (diff)
Restoring authorship annotation for Anton Samokhvalov <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'util/stream/multi.cpp')
-rw-r--r--util/stream/multi.cpp42
1 files changed, 21 insertions, 21 deletions
diff --git a/util/stream/multi.cpp b/util/stream/multi.cpp
index 9ec27d9cfe5..b2354298a0c 100644
--- a/util/stream/multi.cpp
+++ b/util/stream/multi.cpp
@@ -1,26 +1,26 @@
-#include "null.h"
-#include "multi.h"
-
+#include "null.h"
+#include "multi.h"
+
TMultiInput::TMultiInput(IInputStream* f, IInputStream* s) noexcept
- : C_(f)
- , N_(s)
-{
-}
-
+ : C_(f)
+ , N_(s)
+{
+}
+
TMultiInput::~TMultiInput() = default;
-
-size_t TMultiInput::DoRead(void* buf, size_t len) {
- const size_t ret = C_->Read(buf, len);
-
- if (ret) {
- return ret;
- }
-
- C_ = N_;
- N_ = &Cnull;
-
- return C_->Read(buf, len);
-}
+
+size_t TMultiInput::DoRead(void* buf, size_t len) {
+ const size_t ret = C_->Read(buf, len);
+
+ if (ret) {
+ return ret;
+ }
+
+ C_ = N_;
+ N_ = &Cnull;
+
+ return C_->Read(buf, len);
+}
size_t TMultiInput::DoReadTo(TString& st, char ch) {
size_t ret = C_->ReadTo(st, ch);