Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJacques Lucke <jacques@blender.org>2020-07-15 12:06:37 +0300
committerJacques Lucke <jacques@blender.org>2020-07-15 12:06:54 +0300
commite8b26a05018bd56c48453a1b868021c054244765 (patch)
treec557cd92c9d2db7605038e2257cb3dfbaac70ac0 /tests
parent680a81fc49077d46d9f87af5990955d9da5dc8d2 (diff)
Fix signed/unsigned comparison
Diffstat (limited to 'tests')
-rw-r--r--tests/gtests/blenlib/BLI_vector_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/gtests/blenlib/BLI_vector_test.cc b/tests/gtests/blenlib/BLI_vector_test.cc
index a020611aed6..25435739a43 100644
--- a/tests/gtests/blenlib/BLI_vector_test.cc
+++ b/tests/gtests/blenlib/BLI_vector_test.cc
@@ -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