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 | 9a7232babfd763ccfe827bc70e82e0f50cfd8276 (patch) | |
tree | a39808b7482c4711a80f799a7281adb36d76a13a /library/cpp/charset/wide_ut.cpp | |
parent | 0e68ae909d3b76a5a001a07880eb0010dec6b2ea (diff) | |
download | ydb-9a7232babfd763ccfe827bc70e82e0f50cfd8276.tar.gz |
Restoring authorship annotation for <kerzum@yandex-team.ru>. Commit 1 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 78947d51bad..fe1e323c5b7 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) { |