mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 06:25:30 +00:00
ICU-900 Fixed some compiler warnings.
X-SVN-Rev: 4343
This commit is contained in:
parent
b1d4df6d86
commit
199ea23394
1 changed files with 9 additions and 11 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Reference in a new issue