From 75495acb8f8c6d419657b4e1c06506d61f2f8e3e Mon Sep 17 00:00:00 2001 From: Andy Heninger Date: Mon, 25 Sep 2017 20:16:04 +0000 Subject: [PATCH] ICU-13275 Remove some compiler warnings that were triggered by earlier fixes. X-SVN-Rev: 40457 --- icu4c/source/common/dictbe.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/icu4c/source/common/dictbe.cpp b/icu4c/source/common/dictbe.cpp index 9da0d23607..9d8de50a07 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); }