ICU-9662 remove an unnecessary cast

X-SVN-Rev: 32805
This commit is contained in:
Markus Scherer 2012-11-13 07:40:06 +00:00
parent 1d83357783
commit 9fc0006117

View File

@ -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 */ \