ICU-13275 Remove some compiler warnings that were triggered by earlier fixes.
X-SVN-Rev: 40457
This commit is contained in:
parent
9c70152d45
commit
75495acb8f
@ -1089,8 +1089,8 @@ static inline uint32_t getKatakanaCost(int32_t wordLength){
|
||||
}
|
||||
|
||||
static inline bool isKatakana(UChar32 value) {
|
||||
return (value >= 0x30A1u && value <= 0x30FEu && value != 0x30FBu) ||
|
||||
(value >= 0xFF66u && value <= 0xFF9fu);
|
||||
return (value >= 0x30A1 && value <= 0x30FE && value != 0x30FB) ||
|
||||
(value >= 0xFF66 && value <= 0xFF9f);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user