From 199ea2339400fedf3760383d101f863734ac7614 Mon Sep 17 00:00:00 2001 From: George Rhoten Date: Tue, 27 Mar 2001 01:01:52 +0000 Subject: [PATCH] ICU-900 Fixed some compiler warnings. X-SVN-Rev: 4343 --- icu4c/source/test/intltest/jacoll.cpp | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/icu4c/source/test/intltest/jacoll.cpp b/icu4c/source/test/intltest/jacoll.cpp index e6c99024b4f..a68a6c66907 100644 --- a/icu4c/source/test/intltest/jacoll.cpp +++ b/icu4c/source/test/intltest/jacoll.cpp @@ -147,22 +147,20 @@ void CollationKanaTest::TestTertiary(/* char* par */) /* Testing base letters */ void CollationKanaTest::TestBase() { - int32_t i; - UErrorCode status = U_ZERO_ERROR; - myCollation->setStrength(Collator::PRIMARY); - for (i = 0; i < 3 ; i++) - doTest(testBaseCases[i], testBaseCases[i + 1], Collator::LESS); + int32_t i; + myCollation->setStrength(Collator::PRIMARY); + for (i = 0; i < 3 ; i++) + doTest(testBaseCases[i], testBaseCases[i + 1], Collator::LESS); } /* Testing plain, Daku-ten, Handaku-ten letters */ void CollationKanaTest::TestPlainDakutenHandakuten(void) { - int32_t i; - UErrorCode status = U_ZERO_ERROR; - myCollation->setStrength(Collator::SECONDARY); - for (i = 0; i < 3 ; i++) - doTest(testPlainDakutenHandakutenCases[i], testPlainDakutenHandakutenCases[i + 1], - Collator::LESS); + int32_t i; + myCollation->setStrength(Collator::SECONDARY); + for (i = 0; i < 3 ; i++) + doTest(testPlainDakutenHandakutenCases[i], testPlainDakutenHandakutenCases[i + 1], + Collator::LESS); } /*