mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-05 14:34:55 +00:00
Fix unsigned/signed comparison warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@227158 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
24f37da028
commit
ec89182585
@ -46,7 +46,7 @@ TEST(ConvertUTFTest, ConvertUTF8ToUTF16String) {
|
||||
bool Success = convertUTF8ToUTF16String(Ref, Result);
|
||||
EXPECT_TRUE(Success);
|
||||
static const UTF16 Expected[] = {0x0CA0, 0x005f, 0x0CA0, 0};
|
||||
ASSERT_EQ(3, Result.size());
|
||||
ASSERT_EQ(3u, Result.size());
|
||||
for (int I = 0, E = 3; I != E; ++I)
|
||||
EXPECT_EQ(Expected[I], Result[I]);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user