From 5798ca37f68f9bacd2d1e2f2ad81c37a64f79087 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20M=C3=B6bius?= Date: Tue, 23 Jul 2013 16:03:28 +0000 Subject: [PATCH] Fixed several conversion warnings git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@851 fdac6126-5c0c-442c-9429-916003d36597 --- src/Unittests/unittests_decimater.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Unittests/unittests_decimater.hh b/src/Unittests/unittests_decimater.hh index 87bce7fc..0b6582f2 100644 --- a/src/Unittests/unittests_decimater.hh +++ b/src/Unittests/unittests_decimater.hh @@ -53,7 +53,7 @@ TEST_F(OpenMeshDecimater, DecimateMesh) { removedVertices = decimaterDBG.decimate_to(5000); decimaterDBG.mesh().garbage_collection(); - EXPECT_EQ(2526, removedVertices) << "The number of remove vertices is not correct!"; + EXPECT_EQ(2526u, removedVertices) << "The number of remove vertices is not correct!"; EXPECT_EQ(5000u, mesh_.n_vertices()) << "The number of vertices after decimation is not correct!"; EXPECT_EQ(14994u, mesh_.n_edges()) << "The number of edges after decimation is not correct!"; EXPECT_EQ(9996u, mesh_.n_faces()) << "The number of faces after decimation is not correct!";