From: Steven R. Loomis Date: Thu, 12 Sep 2013 05:49:49 +0000 (+0000) Subject: ICU-10273 fix compilation failure in test- need LL for long long X-Git-Tag: milestone-59-0-1~2557 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b258b9a07befd7f8c89320190a371f18e5e682c0;p=icu ICU-10273 fix compilation failure in test- need LL for long long X-SVN-Rev: 34284 --- diff --git a/icu4c/source/test/intltest/dcfmapts.cpp b/icu4c/source/test/intltest/dcfmapts.cpp index b439c86e2b7..bdfce6b0575 100644 --- a/icu4c/source/test/intltest/dcfmapts.cpp +++ b/icu4c/source/test/intltest/dcfmapts.cpp @@ -747,7 +747,7 @@ void IntlTestDecimalFormatAPI::TestFixedDecimal() { ASSERT_EQUAL(2, fd.visibleDecimalDigitCount); ASSERT_EQUAL(30, fd.decimalDigits); ASSERT_EQUAL(3, fd.decimalDigitsWithoutTrailingZeros); - ASSERT_EQUAL(100000000000000000, fd.intValue); + ASSERT_EQUAL(100000000000000000LL, fd.intValue); ASSERT_EQUAL(FALSE, fd.hasIntegerValue); ASSERT_EQUAL(FALSE, fd.isNegative);