From cba885edbe8ee9a39ccd5e72aa1feef84f1338d1 Mon Sep 17 00:00:00 2001 From: ganovelli Date: Fri, 24 Oct 2008 09:49:47 +0000 Subject: [PATCH] missing (unreachable) return added --- vcg/simplex/face/pos.h | 1 + 1 file changed, 1 insertion(+) diff --git a/vcg/simplex/face/pos.h b/vcg/simplex/face/pos.h index c1721a4d..b1b4f0de 100644 --- a/vcg/simplex/face/pos.h +++ b/vcg/simplex/face/pos.h @@ -199,6 +199,7 @@ public: { for(int i = 0; i < f->VN(); ++i) if(v==f->V(i)) return i; assert(0); + return -1; }