From 6993ad264667b61d6c2a831ab444bb37889d3670 Mon Sep 17 00:00:00 2001 From: Travis Keep Date: Thu, 13 Jun 2013 20:21:29 +0000 Subject: [PATCH] ICU-10069 Attempt to fix broken build by doing int->int32_t. X-SVN-Rev: 33827 --- icu4c/source/i18n/ucurr.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.40.0