ICU-1199 replace Unicode::digit() with u_digit()

X-SVN-Rev: 5874
This commit is contained in:
Markus Scherer 2001-09-21 18:50:49 +00:00
parent 484714e56e
commit fc8a233f9b

View file

@ -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;
}