From c1496cb94acf424002d09d3a5403f1ce9e3ea95a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20M=C3=B6bius?= Date: Tue, 9 Apr 2019 08:16:35 +0200 Subject: [PATCH] Fixed unittest warning --- src/Unittests/unittests_eigen3_type.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Unittests/unittests_eigen3_type.cc b/src/Unittests/unittests_eigen3_type.cc index b9f59a61..7be54b70 100644 --- a/src/Unittests/unittests_eigen3_type.cc +++ b/src/Unittests/unittests_eigen3_type.cc @@ -197,7 +197,7 @@ TEST_F(OpenMeshEigenTest, test_normal_computation) { mesh_.update_face_normals(); - EXPECT_EQ(mesh_.n_faces(),2) << "Wrong number of faces"; + EXPECT_EQ(mesh_.n_faces(),2u) << "Wrong number of faces"; EigenTriMesh::Normal normal = mesh_.normal(face1);