Commit e0743b2f authored by Milo Yip's avatar Milo Yip

Fix a clang/gcc warning

parent 26be3be5
...@@ -119,7 +119,7 @@ TEST(Pointer, Parse) { ...@@ -119,7 +119,7 @@ TEST(Pointer, Parse) {
EXPECT_TRUE(p.IsValid()); EXPECT_TRUE(p.IsValid());
EXPECT_EQ(1u, p.GetTokenCount()); EXPECT_EQ(1u, p.GetTokenCount());
EXPECT_STREQ("123", p.GetTokens()[0].name); EXPECT_STREQ("123", p.GetTokens()[0].name);
EXPECT_EQ(123, p.GetTokens()[0].index); EXPECT_EQ(123u, p.GetTokens()[0].index);
} }
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment