From d3a398281c6fd1d3672036cb2d63f842d2cb28c5 Mon Sep 17 00:00:00 2001
From: Anton Samokhvalov <pg83@yandex.ru>
Date: Thu, 10 Feb 2022 16:45:17 +0300
Subject: Restoring authorship annotation for Anton Samokhvalov
 <pg83@yandex.ru>. Commit 2 of 2.

---
 library/cpp/yson_pull/reader.h | 34 +++++++++++++++++-----------------
 1 file changed, 17 insertions(+), 17 deletions(-)

(limited to 'library/cpp/yson_pull/reader.h')

diff --git a/library/cpp/yson_pull/reader.h b/library/cpp/yson_pull/reader.h
index 6326d6eba3..f839b19071 100644
--- a/library/cpp/yson_pull/reader.h
+++ b/library/cpp/yson_pull/reader.h
@@ -9,29 +9,29 @@
 #include <memory>
 
 namespace NYsonPull {
-    namespace NDetail { 
-        class reader_impl; 
-    } 
-
-    //! \brief YSON reader facade class. 
-    //! 
-    //! Owns an input stream. 
-    class TReader { 
+    namespace NDetail {
+        class reader_impl;
+    }
+
+    //! \brief YSON reader facade class.
+    //!
+    //! Owns an input stream.
+    class TReader {
         THolder<NInput::IStream> Stream_;
         THolder<NDetail::reader_impl> Impl_;
 
-    public: 
-        TReader(THolder<NInput::IStream> stream, EStreamType mode); 
-        TReader(TReader&&) noexcept; 
-        ~TReader(); 
+    public:
+        TReader(THolder<NInput::IStream> stream, EStreamType mode);
+        TReader(TReader&&) noexcept;
+        ~TReader();
 
-        //! \brief Advance stream to next event and return it. 
-        //! 
+        //! \brief Advance stream to next event and return it.
+        //!
         //! Any event data is invalidated by a call to NextEvent();
         const TEvent& NextEvent();
 
-        //! \brief Get last returned event. 
+        //! \brief Get last returned event.
         const TEvent& LastEvent() const noexcept;
-    }; 
+    };
 
-} 
+}
-- 
cgit v1.2.3