]> granicus.if.org Git - icu/commitdiff
ICU-13275 Remove some compiler warnings that were triggered by earlier fixes.
authorAndy Heninger <andy.heninger@gmail.com>
Mon, 25 Sep 2017 20:16:04 +0000 (20:16 +0000)
committerAndy Heninger <andy.heninger@gmail.com>
Mon, 25 Sep 2017 20:16:04 +0000 (20:16 +0000)
X-SVN-Rev: 40457

icu4c/source/common/dictbe.cpp

index 9da0d236072b7994072e4039846aab0e9af05df6..9d8de50a07a262fbc1f4faadde9a99ae71d55233 100644 (file)
@@ -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);
 }