diff options
author | suns <suns@yandex-team.ru> | 2022-02-10 16:49:38 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:38 +0300 |
commit | e96f1aaedf6a2ae2d159b90cc6990e5a94d005a8 (patch) | |
tree | 1e031f58b2ae517a3c5436f107de2b2e401350ca /util/generic/string.cpp | |
parent | 22a7d4be7e5b779e4deee4dfe36234a1eae13fbd (diff) | |
download | ydb-e96f1aaedf6a2ae2d159b90cc6990e5a94d005a8.tar.gz |
Restoring authorship annotation for <suns@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/generic/string.cpp')
-rw-r--r-- | util/generic/string.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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()); } |