]> granicus.if.org Git - icu/commitdiff
ICU-11746 more warning nits
authorSteven R. Loomis <srl@icu-project.org>
Tue, 20 Sep 2016 17:36:32 +0000 (17:36 +0000)
committerSteven R. Loomis <srl@icu-project.org>
Tue, 20 Sep 2016 17:36:32 +0000 (17:36 +0000)
X-SVN-Rev: 39294

icu4c/source/i18n/affixpatternparser.cpp
icu4c/source/i18n/reldatefmt.cpp
icu4c/source/i18n/unicode/uspoof.h
icu4c/source/i18n/visibledigits.cpp

index 17ca6615497545a55b0a02f998c19d21b589c4cf..2ca22a15003657846a57f675865d5e45099b7621 100644 (file)
@@ -46,7 +46,8 @@ nextToken(const UChar *buffer, int32_t idx, int32_t len, UChar *token) {
     *token = buffer[idx + 1];
     if (buffer[idx + 1] == 0xA4) {
         int32_t i = 2;
-        for (; idx + i < len && i < 4 && buffer[idx + i] == buffer[idx + 1]; ++i);
+        for (; idx + i < len && i < 4 && buffer[idx + i] == buffer[idx + 1]; ++i)
+          ;
         return i;
     }
     return 2;
@@ -68,7 +69,8 @@ nextUserToken(const UChar *buffer, int32_t idx, int32_t len, UChar *token) {
         break;
     }
     int32_t i = 1;
-    for (; idx + i < len && i < max && buffer[idx + i] == buffer[idx]; ++i);
+    for (; idx + i < len && i < max && buffer[idx + i] == buffer[idx]; ++i)
+      ;
     return i;
 }
 
index f59b812d14a0ef3f91b02c82887307f1f5f6eb65..dd4894e95e2e4b6b97d10521c5c1ffa23bff70dc 100644 (file)
@@ -556,7 +556,7 @@ struct RelDateTimeFmtDataSink : public ResourceSink {
 };
 
 // Virtual destructors must be defined out of line.
-RelDateTimeFmtDataSink::~RelDateTimeFmtDataSink() {};
+RelDateTimeFmtDataSink::~RelDateTimeFmtDataSink() {}
 } // namespace
 
 DateFormatSymbols::DtWidthType styleToDateFormatSymbolWidth[UDAT_STYLE_COUNT] = {
index 08e85fcfb03c4095f0b58485616b893c8041ca67..5151993ca9b67547d2e82d1c83cacf4f397ea484 100644 (file)
@@ -577,7 +577,7 @@ typedef enum USpoofChecks {
          * An undefined restriction level.
          * @internal
          */
-        USPOOF_UNDEFINED_RESTRICTIVE = -1,
+        USPOOF_UNDEFINED_RESTRICTIVE = -1
     } URestrictionLevel;
 
 /**
index 9fbcac7b53997da82fcc10e49afe2bf64d31c732..1fea3504dfeee8cfa4b619293d809cd850deb1d3 100644 (file)
@@ -163,7 +163,8 @@ void VisibleDigits::getFixedDecimal(
     // f (decimal digits)
     // skip over any leading 0's in fraction digits.
     int32_t idx = -1;
-    for (; idx >= -v && getDigitByExponent(idx) == 0; --idx);
+    for (; idx >= -v && getDigitByExponent(idx) == 0; --idx)
+      ;
 
     // Only process up to first 18 non zero fraction digits for decimalDigits
     // since that is all we can fit into an int64.