mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 22:44:49 +00:00
ICU-9662 remove an unnecessary cast
X-SVN-Rev: 32805
This commit is contained in:
parent
1d83357783
commit
9fc0006117
1 changed files with 2 additions and 2 deletions
|
@ -357,7 +357,7 @@ utf8_back1SafeBody(const uint8_t *s, int32_t start, int32_t i);
|
|||
((i)!=(length)) && \
|
||||
(__t1=(uint8_t)((s)[i]-0x80))<=0x3f \
|
||||
) { \
|
||||
(c)=(UChar)((((c)&0x1f)<<6)|__t1); \
|
||||
(c)=(((c)&0x1f)<<6)|__t1; \
|
||||
++(i); \
|
||||
} else { \
|
||||
/* function call for "complicated" and error cases */ \
|
||||
|
@ -408,7 +408,7 @@ utf8_back1SafeBody(const uint8_t *s, int32_t start, int32_t i);
|
|||
((i)!=(length)) && \
|
||||
(__t1=(uint8_t)((s)[i]-0x80))<=0x3f \
|
||||
) { \
|
||||
(c)=(UChar)((((c)&0x1f)<<6)|__t1); \
|
||||
(c)=(((c)&0x1f)<<6)|__t1; \
|
||||
++(i); \
|
||||
} else { \
|
||||
/* function call for "complicated" and error cases */ \
|
||||
|
|
Loading…
Add table
Reference in a new issue