aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorsuns <suns@yandex-team.ru>2022-02-10 16:49:38 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:49:38 +0300
commite96f1aaedf6a2ae2d159b90cc6990e5a94d005a8 (patch)
tree1e031f58b2ae517a3c5436f107de2b2e401350ca /util
parent22a7d4be7e5b779e4deee4dfe36234a1eae13fbd (diff)
downloadydb-e96f1aaedf6a2ae2d159b90cc6990e5a94d005a8.tar.gz
Restoring authorship annotation for <suns@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util')
-rw-r--r--util/generic/fwd.h4
-rw-r--r--util/generic/string.cpp2
-rw-r--r--util/generic/string.h2
3 files changed, 4 insertions, 4 deletions
diff --git a/util/generic/fwd.h b/util/generic/fwd.h
index 5cc2da40e51..67daf76b0f6 100644
--- a/util/generic/fwd.h
+++ b/util/generic/fwd.h
@@ -2,8 +2,8 @@
#include <util/system/defaults.h>
-#include <stlfwd>
-
+#include <stlfwd>
+
template <typename TCharType, typename TTraits = std::char_traits<TCharType>>
class TBasicString;
diff --git a/util/generic/string.cpp b/util/generic/string.cpp
index 3c655f1f663..8c38f78d97d 100644
--- a/util/generic/string.cpp
+++ b/util/generic/string.cpp
@@ -10,7 +10,7 @@
alignas(32) const char NULL_STRING_REPR[128] = {0};
-std::ostream& operator<<(std::ostream& os, const TString& s) {
+std::ostream& operator<<(std::ostream& os, const TString& s) {
return os.write(s.data(), s.size());
}
diff --git a/util/generic/string.h b/util/generic/string.h
index 8cd8aa6917f..20858c79d66 100644
--- a/util/generic/string.h
+++ b/util/generic/string.h
@@ -2,7 +2,7 @@
#include <cstddef>
#include <cstring>
-#include <stlfwd>
+#include <stlfwd>
#include <stdexcept>
#include <string>
#include <string_view>