From eace2adfb451fa3978f6edbae8aec53a50d1c969 Mon Sep 17 00:00:00 2001
From: sinister <sinister@yandex-team.ru>
Date: Thu, 10 Feb 2022 16:50:50 +0300
Subject: Restoring authorship annotation for <sinister@yandex-team.ru>. Commit
 2 of 2.

---
 library/cpp/yson_pull/detail/percent_scalar.h | 62 +++++++++++++--------------
 1 file changed, 31 insertions(+), 31 deletions(-)

(limited to 'library/cpp/yson_pull/detail/percent_scalar.h')

diff --git a/library/cpp/yson_pull/detail/percent_scalar.h b/library/cpp/yson_pull/detail/percent_scalar.h
index beec425c7d..ff4571842e 100644
--- a/library/cpp/yson_pull/detail/percent_scalar.h
+++ b/library/cpp/yson_pull/detail/percent_scalar.h
@@ -1,36 +1,36 @@
-#pragma once 
- 
-#include <util/generic/strbuf.h> 
- 
-namespace NYsonPull::NDetail { 
-    enum class percent_scalar_type { 
-        boolean, 
-        float64 
-    }; 
- 
-    struct percent_scalar { 
-        //! Text boolean literals 
+#pragma once
+
+#include <util/generic/strbuf.h>
+
+namespace NYsonPull::NDetail {
+    enum class percent_scalar_type {
+        boolean,
+        float64
+    };
+
+    struct percent_scalar {
+        //! Text boolean literals
         static constexpr TStringBuf true_literal = "%true";
         static constexpr TStringBuf false_literal = "%false";
-        //! Text floating-point literals 
+        //! Text floating-point literals
         static constexpr TStringBuf nan_literal = "%nan";
         static constexpr TStringBuf positive_inf_literal = "%inf";
         static constexpr TStringBuf negative_inf_literal = "%-inf";
- 
-        percent_scalar_type type; 
-        union { 
-            double as_float64; 
-            bool as_boolean; 
-        } value; 
- 
-        percent_scalar(double v) { 
-            type = percent_scalar_type::float64; 
-            value.as_float64 = v; 
-        } 
- 
-        percent_scalar(bool v) { 
-            type = percent_scalar_type::boolean; 
-            value.as_boolean = v; 
-        } 
-    }; 
-} 
+
+        percent_scalar_type type;
+        union {
+            double as_float64;
+            bool as_boolean;
+        } value;
+
+        percent_scalar(double v) {
+            type = percent_scalar_type::float64;
+            value.as_float64 = v;
+        }
+
+        percent_scalar(bool v) {
+            type = percent_scalar_type::boolean;
+            value.as_boolean = v;
+        }
+    };
+}
-- 
cgit v1.2.3