Fix signed/unsigned comparison

This commit is contained in:
Jacques Lucke 2020-07-15 11:06:37 +02:00
parent 680a81fc49
commit e8b26a0501
1 changed files with 1 additions and 1 deletions

View File

@ -657,7 +657,7 @@ TEST(vector, ConstructVoidPointerVector)
float b;
double c;
Vector<void *> vec = {&a, &b, &c};
EXPECT_EQ(vec.size(), 3);
EXPECT_EQ(vec.size(), 3u);
}
} // namespace blender