mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-21 12:40:02 +00:00
ICU-348 do not do signed arithmetic with unsigned types, because you'll
be surprised by the results! X-SVN-Rev: 1078
This commit is contained in:
parent
270334248b
commit
3f818deeaa
1 changed files with 1 additions and 1 deletions
|
@ -1162,7 +1162,7 @@ void Normalizer::jamoToHangul(UnicodeString& buffer, UTextOffset start) {
|
|||
UTextOffset limit = buffer.length() - 1;
|
||||
|
||||
UTextOffset in;
|
||||
uint16_t l, v, t;
|
||||
int16_t l, v, t;
|
||||
|
||||
for (in = start; in < limit; in++) {
|
||||
UChar ch = buffer[in];
|
||||
|
|
Loading…
Add table
Reference in a new issue