mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-15 01:42:37 +00:00
ICU-4092 Fix for MSVC 6
X-SVN-Rev: 16987
This commit is contained in:
parent
8ab45b2d62
commit
ae9c08341d
1 changed files with 4 additions and 4 deletions
|
@ -102,10 +102,10 @@ void UVectorTest::UVector_API() {
|
|||
|
||||
status = U_ZERO_ERROR;
|
||||
a = new UVector(status);
|
||||
a->sortedInsert(10, UVectorTest_compareInt32, status);
|
||||
a->sortedInsert(20, UVectorTest_compareInt32, status);
|
||||
a->sortedInsert(30, UVectorTest_compareInt32, status);
|
||||
a->sortedInsert(15, UVectorTest_compareInt32, status);
|
||||
a->sortedInsert((int32_t)10, UVectorTest_compareInt32, status);
|
||||
a->sortedInsert((int32_t)20, UVectorTest_compareInt32, status);
|
||||
a->sortedInsert((int32_t)30, UVectorTest_compareInt32, status);
|
||||
a->sortedInsert((int32_t)15, UVectorTest_compareInt32, status);
|
||||
TEST_CHECK_STATUS(status);
|
||||
TEST_ASSERT(a->elementAti(0) == 10);
|
||||
TEST_ASSERT(a->elementAti(1) == 15);
|
||||
|
|
Loading…
Add table
Reference in a new issue