diff options
| author | mowgli <[email protected]> | 2022-02-10 16:49:25 +0300 | 
|---|---|---|
| committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:49:25 +0300 | 
| commit | 89afbbe4ca0e02e386dd4df08f7945f190dc1b84 (patch) | |
| tree | c4772201af6215d48734691b8796e4cfc77c2ac8 /library/cpp/charset/codepage.h | |
| parent | 7510cec1516d17cbc8d7749974e36aa45f547a26 (diff) | |
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/charset/codepage.h')
| -rw-r--r-- | library/cpp/charset/codepage.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/library/cpp/charset/codepage.h b/library/cpp/charset/codepage.h index 30a02a46106..419f5746bc8 100644 --- a/library/cpp/charset/codepage.h +++ b/library/cpp/charset/codepage.h @@ -199,7 +199,7 @@ struct Encoder {              return 0;          return (unsigned char)Table[(ch >> 8) & 255][ch & 255];      } - +       inline char Tr(wchar32 ch) const {          char code = Code(ch);          if (code == 0 && ch != 0) @@ -211,7 +211,7 @@ struct Encoder {      inline unsigned char operator[](wchar32 ch) const {          return Tr(ch);      } - +       void Tr(const wchar32* in, char* out, size_t len) const;      void Tr(const wchar32* in, char* out) const;      char* DefaultPlane; | 
