diff options
author | vitamin-ca <vitamin-ca@yandex-team.ru> | 2022-02-10 16:50:46 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:50:46 +0300 |
commit | 33975e98548306c90ccdc156bc436408a213be00 (patch) | |
tree | f3f70f93263e848986d3f52e04e4e9a980e224b0 /util/charset/wide.h | |
parent | a175286682787b2d1213734c5be7458aaf594c1c (diff) | |
download | ydb-33975e98548306c90ccdc156bc436408a213be00.tar.gz |
Restoring authorship annotation for <vitamin-ca@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/charset/wide.h')
-rw-r--r-- | util/charset/wide.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/charset/wide.h b/util/charset/wide.h index 04e6928aab..53273970b6 100644 --- a/util/charset/wide.h +++ b/util/charset/wide.h @@ -438,7 +438,7 @@ inline TString WideToUTF8(const wchar32* text, size_t len) { } inline TString WideToUTF8(const TWtringBuf w) { - return WideToUTF8(w.data(), w.size()); + return WideToUTF8(w.data(), w.size()); } inline TString WideToUTF8(const TUtf32StringBuf w) { @@ -675,7 +675,7 @@ inline bool IsSpace(const wchar16* s, size_t n) { //! returns @c true if string contains whitespace characters only inline bool IsSpace(const TWtringBuf s) { - return IsSpace(s.data(), s.length()); + return IsSpace(s.data(), s.length()); } //! replaces multiple sequential whitespace characters with a single space character |