]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/common/ucnvbocu.cpp
ICU-66108.tar.gz
[apple/icu.git] / icuSources / common / ucnvbocu.cpp
index 5b66c5059a55ba32c5e339280d654f8ab7062852..7c2aab56558c8c2cc1c97dfe77c184a008153407 100644 (file)
@@ -202,14 +202,14 @@ bocu1TrailToByte[BOCU1_TRAIL_CONTROLS_COUNT]={
  * @param d Divisor.
  * @param m Output variable for the rest (modulo result).
  */
-#define NEGDIVMOD(n, d, m) { \
+#define NEGDIVMOD(n, d, m) UPRV_BLOCK_MACRO_BEGIN { \
     (m)=(n)%(d); \
     (n)/=(d); \
     if((m)<0) { \
         --(n); \
         (m)+=(d); \
     } \
-}
+} UPRV_BLOCK_MACRO_END
 
 /* Faster versions of packDiff() for single-byte-encoded diff values. */