aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp
diff options
context:
space:
mode:
authorgetsiu <getsiu@yandex-team.ru>2022-02-10 16:47:17 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:47:17 +0300
commit5c1eb9f48fd0ac41fd72519a8284ded6f0358f6f (patch)
tree9814fbd1c3effac9b8377c5d604b367b14e2db55 /library/cpp
parentb7af6816e7f07e6271ae48e4ec76dabf1cfdbd11 (diff)
downloadydb-5c1eb9f48fd0ac41fd72519a8284ded6f0358f6f.tar.gz
Restoring authorship annotation for <getsiu@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp')
-rw-r--r--library/cpp/yson_pull/consumer.h2
-rw-r--r--library/cpp/yson_pull/detail/cescape_encode.h2
-rw-r--r--library/cpp/yson_pull/detail/number.h2
-rw-r--r--library/cpp/yson_pull/detail/reader.h2
-rw-r--r--library/cpp/yson_pull/detail/symbols.h4
-rw-r--r--library/cpp/yson_pull/position_info.h2
6 files changed, 7 insertions, 7 deletions
diff --git a/library/cpp/yson_pull/consumer.h b/library/cpp/yson_pull/consumer.h
index c06f5a4077..f3b1398d4c 100644
--- a/library/cpp/yson_pull/consumer.h
+++ b/library/cpp/yson_pull/consumer.h
@@ -3,7 +3,7 @@
#include "event.h"
#include <util/generic/strbuf.h>
-#include <util/system/types.h>
+#include <util/system/types.h>
namespace NYsonPull {
class IConsumer {
diff --git a/library/cpp/yson_pull/detail/cescape_encode.h b/library/cpp/yson_pull/detail/cescape_encode.h
index be2d70c0d7..bf5765f1d9 100644
--- a/library/cpp/yson_pull/detail/cescape_encode.h
+++ b/library/cpp/yson_pull/detail/cescape_encode.h
@@ -1,6 +1,6 @@
#pragma once
-#include <util/system/types.h>
+#include <util/system/types.h>
// Whether to ensure strict ASCII compatibility
// Turns UTF-8 strings into unreadable garbage for no known reason
diff --git a/library/cpp/yson_pull/detail/number.h b/library/cpp/yson_pull/detail/number.h
index 425c0487f9..5595f55e05 100644
--- a/library/cpp/yson_pull/detail/number.h
+++ b/library/cpp/yson_pull/detail/number.h
@@ -1,6 +1,6 @@
#pragma once
-#include <util/system/types.h>
+#include <util/system/types.h>
namespace NYsonPull {
namespace NDetail {
diff --git a/library/cpp/yson_pull/detail/reader.h b/library/cpp/yson_pull/detail/reader.h
index fcafc206b7..0e02396358 100644
--- a/library/cpp/yson_pull/detail/reader.h
+++ b/library/cpp/yson_pull/detail/reader.h
@@ -75,7 +75,7 @@ namespace NYsonPull {
none = 3 + (5 << 2), // = 10111b
};
-#define CHAR_SUBCLASS(x) (static_cast<ui8>(x) >> 2)
+#define CHAR_SUBCLASS(x) (static_cast<ui8>(x) >> 2)
inline char_class get_char_class(ui8 ch) {
#define NN char_class::none
diff --git a/library/cpp/yson_pull/detail/symbols.h b/library/cpp/yson_pull/detail/symbols.h
index 4228281788..fe94bb9c41 100644
--- a/library/cpp/yson_pull/detail/symbols.h
+++ b/library/cpp/yson_pull/detail/symbols.h
@@ -1,12 +1,12 @@
#pragma once
#include <util/generic/strbuf.h>
-#include <util/system/types.h>
+#include <util/system/types.h>
namespace NYsonPull {
namespace NDetail {
namespace NSymbol {
-#define SYM(name, value) constexpr ui8 name = value
+#define SYM(name, value) constexpr ui8 name = value
//! Indicates the beginning of a list.
SYM(begin_list, '[');
diff --git a/library/cpp/yson_pull/position_info.h b/library/cpp/yson_pull/position_info.h
index d395c98a18..a65c4663a9 100644
--- a/library/cpp/yson_pull/position_info.h
+++ b/library/cpp/yson_pull/position_info.h
@@ -1,7 +1,7 @@
#pragma once
#include <util/generic/maybe.h>
-#include <util/system/types.h>
+#include <util/system/types.h>
namespace NYsonPull {
struct TPositionInfo {