diff options
author | Ivan Korostelev <ivan.korostelev@gmail.com> | 2022-02-10 16:46:41 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:41 +0300 |
commit | b5e813096385b2d9e16b572711fec5bf2eb5058d (patch) | |
tree | 49e222ea1c5804306084bb3ae065bb702625360f /util/charset | |
parent | f3a52f9d3e18d1159abbc85fa65eeda69d971657 (diff) | |
download | ydb-b5e813096385b2d9e16b572711fec5bf2eb5058d.tar.gz |
Restoring authorship annotation for Ivan Korostelev <ivan.korostelev@gmail.com>. Commit 2 of 2.
Diffstat (limited to 'util/charset')
-rw-r--r-- | util/charset/wide.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/util/charset/wide.cpp b/util/charset/wide.cpp index 25ba822ce7..a287438ddd 100644 --- a/util/charset/wide.cpp +++ b/util/charset/wide.cpp @@ -1,8 +1,8 @@ #include "wide.h" #include <util/generic/mem_copy.h> -#include <util/string/strip.h> - +#include <util/string/strip.h> + namespace { //! the constants are not zero-terminated const wchar16 LT[] = {'&', 'l', 't', ';'}; @@ -32,11 +32,11 @@ namespace { } void Collapse(TUtf16String& w) { - CollapseImpl(w, w, 0, IsWhitespace); + CollapseImpl(w, w, 0, IsWhitespace); } size_t Collapse(wchar16* s, size_t n) { - return CollapseImpl(s, n, IsWhitespace); + return CollapseImpl(s, n, IsWhitespace); } TWtringBuf StripLeft(const TWtringBuf text) noexcept { |