From 0f6cfeb1c08189f2ba6e0e0198e606d3c39de72f Mon Sep 17 00:00:00 2001 From: cignoni Date: Thu, 1 Jul 2010 09:21:56 +0000 Subject: [PATCH] removed harmless gcc warnings (unsigned vs signed int) --- vcg/complex/trimesh/clean.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vcg/complex/trimesh/clean.h b/vcg/complex/trimesh/clean.h index 25f3679f..dfcc8fb2 100644 --- a/vcg/complex/trimesh/clean.h +++ b/vcg/complex/trimesh/clean.h @@ -245,11 +245,11 @@ private: tri::Index(m,(*fi).V(2)), &*fi)); } - assert (m.fn == fvec.size()); + assert (size_t(m.fn) == fvec.size()); //for(int i=0;i