mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 22:44:49 +00:00
ICU-1199 replace Unicode::digit() with u_digit()
X-SVN-Rev: 5874
This commit is contained in:
parent
484714e56e
commit
fc8a233f9b
1 changed files with 1 additions and 1 deletions
|
@ -301,7 +301,7 @@ void HexToUnicodeTransliterator::handleTransliterate(Replaceable& text, UTransPo
|
|||
}
|
||||
break;
|
||||
}
|
||||
int8_t digit = Unicode::digit(text.charAt(curs), 16);
|
||||
int8_t digit = u_digit(text.charAt(curs), 16);
|
||||
if (digit < 0) {
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue