diff options
author | vitamin-ca <[email protected]> | 2022-02-10 16:50:47 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:50:47 +0300 |
commit | 1fc0bdffa16f1d19af9025338185cc8533b09606 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /util | |
parent | 33975e98548306c90ccdc156bc436408a213be00 (diff) |
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'util')
-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 53273970b61..04e6928aab3 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 |