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 | 4e4faf8d95a4916a49f6674f3ff50e13799fbaa6 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /util/generic/string.cpp | |
parent | e96f1aaedf6a2ae2d159b90cc6990e5a94d005a8 (diff) | |
download | ydb-4e4faf8d95a4916a49f6674f3ff50e13799fbaa6.tar.gz |
Restoring authorship annotation for <suns@yandex-team.ru>. Commit 2 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 8c38f78d97..3c655f1f66 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()); } |