]> granicus.if.org Git - icu/commitdiff
ICU-9679 fix a warning about identity comparison
authorSteven R. Loomis <srl@icu-project.org>
Fri, 7 Dec 2012 00:05:59 +0000 (00:05 +0000)
committerSteven R. Loomis <srl@icu-project.org>
Fri, 7 Dec 2012 00:05:59 +0000 (00:05 +0000)
X-SVN-Rev: 32933

icu4c/source/i18n/decNumber.c

index 89d242a00e51733678bc1bc6c64c316a8ab552e4..08485407db6bce0629600dc7018d970698a6654a 100644 (file)
@@ -7018,7 +7018,7 @@ static void decSetCoeff(decNumber *dn, decContext *set, const Unit *lsu,
     if (cut==0) quot=*up;          /* is at bottom of unit  */
      else /* cut>0 */ {            /* it's not at bottom of unit  */
       #if DECDPUN<=4
-        U_ASSERT(cut >= 0 && cut <= 4);
+        U_ASSERT(/* cut >= 0 &&*/ cut <= 4);
         quot=QUOT10(*up, cut);
         rem=*up-quot*powers[cut];
       #else