From: Travis Keep Date: Thu, 13 Jun 2013 20:21:29 +0000 (+0000) Subject: ICU-10069 Attempt to fix broken build by doing int->int32_t. X-Git-Tag: milestone-59-0-1~2835 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6993ad264667b61d6c2a831ab444bb37889d3670;p=icu ICU-10069 Attempt to fix broken build by doing int->int32_t. X-SVN-Rev: 33827 --- diff --git a/icu4c/source/i18n/ucurr.cpp b/icu4c/source/i18n/ucurr.cpp index d8031ac87ce..a13ddc7bb0f 100644 --- a/icu4c/source/i18n/ucurr.cpp +++ b/icu4c/source/i18n/ucurr.cpp @@ -214,8 +214,8 @@ static void makeEquivalent( // countEquivalent counts how many strings are equivalent to s. // hash stores all the equivalnce relations. // countEquivalent does not include s itself in the count. -static int countEquivalent(const icu::Hashtable &hash, const icu::UnicodeString &s) { - int result = 0; +static int32_t countEquivalent(const icu::Hashtable &hash, const icu::UnicodeString &s) { + int32_t result = 0; EquivIterator iter(hash, s); while (iter.next() != NULL) { ++result;