diff options
author | kerzum <kerzum@yandex-team.ru> | 2022-02-10 16:49:33 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:33 +0300 |
commit | 47a7e7b29636bfb2deb1df5f92363b3c75229c95 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/charset/wide_ut.cpp | |
parent | 9a7232babfd763ccfe827bc70e82e0f50cfd8276 (diff) | |
download | ydb-47a7e7b29636bfb2deb1df5f92363b3c75229c95.tar.gz |
Restoring authorship annotation for <kerzum@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/charset/wide_ut.cpp')
-rw-r--r-- | library/cpp/charset/wide_ut.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/cpp/charset/wide_ut.cpp b/library/cpp/charset/wide_ut.cpp index fe1e323c5b7..78947d51bad 100644 --- a/library/cpp/charset/wide_ut.cpp +++ b/library/cpp/charset/wide_ut.cpp @@ -343,7 +343,7 @@ void Out<RECODE_RESULT>(IOutputStream& out, RECODE_RESULT val) { void TConversionTest::TestRecode() { for (int c = 0; c != CODES_MAX; ++c) { - ECharset enc = static_cast<ECharset>(c); + ECharset enc = static_cast<ECharset>(c); if (!SingleByteCodepage(enc)) continue; @@ -385,11 +385,11 @@ void TConversionTest::TestRecode() { void TConversionTest::TestUnicodeLimit() { for (int i = 0; i != CODES_MAX; ++i) { - ECharset code = static_cast<ECharset>(i); + ECharset code = static_cast<ECharset>(i); if (!SingleByteCodepage(code)) continue; - const CodePage* page = CodePageByCharset(code); + const CodePage* page = CodePageByCharset(code); Y_ASSERT(page); for (int c = 0; c < 256; ++c) { |