From: Andy Heninger Date: Mon, 25 Sep 2017 20:16:04 +0000 (+0000) Subject: ICU-13275 Remove some compiler warnings that were triggered by earlier fixes. X-Git-Tag: release-60-rc~113 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=75495acb8f8c6d419657b4e1c06506d61f2f8e3e;p=icu ICU-13275 Remove some compiler warnings that were triggered by earlier fixes. X-SVN-Rev: 40457 --- diff --git a/icu4c/source/common/dictbe.cpp b/icu4c/source/common/dictbe.cpp index 9da0d236072..9d8de50a07a 100644 --- a/icu4c/source/common/dictbe.cpp +++ b/icu4c/source/common/dictbe.cpp @@ -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); }