diff options
author | alzobnin <alzobnin@yandex-team.ru> | 2022-02-10 16:46:50 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:50 +0300 |
commit | 5085152b94bf621933243a498def7f37d2e76b58 (patch) | |
tree | 49e222ea1c5804306084bb3ae065bb702625360f /util/charset/unidata.h | |
parent | c9317148cc3e9f1b0bc0ce95172f47e099f2c554 (diff) | |
download | ydb-5085152b94bf621933243a498def7f37d2e76b58.tar.gz |
Restoring authorship annotation for <alzobnin@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/charset/unidata.h')
-rw-r--r-- | util/charset/unidata.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/charset/unidata.h b/util/charset/unidata.h index 0dc3103af9..400d314186 100644 --- a/util/charset/unidata.h +++ b/util/charset/unidata.h @@ -76,7 +76,7 @@ enum WC_TYPE { // TODO move no NUnicode CCL_NUM = 57, CCL_MASK = 0x3F, - IS_ASCII_XDIGIT = 1 << 6, + IS_ASCII_XDIGIT = 1 << 6, IS_DIGIT = 1 << 7, IS_NONBREAK = 1 << 8, @@ -251,7 +251,7 @@ inline bool IsHangulTrailing(wchar32 ch) { return NUnicode::CharHasType(ch, SHIFT(Lo_TRAILING)); } inline bool IsHexdigit(wchar32 ch) { - return NUnicode::NPrivate::CharInfo(ch) & IS_ASCII_XDIGIT; + return NUnicode::NPrivate::CharInfo(ch) & IS_ASCII_XDIGIT; } inline bool IsDecdigit(wchar32 ch) { return NUnicode::CharHasType(ch, SHIFT(Nd_DIGIT)); |