From fab34558d792155e86c906a83cd96da722f298e2 Mon Sep 17 00:00:00 2001 From: cignoni Date: Sat, 12 Nov 2005 18:39:54 +0000 Subject: [PATCH] Added dummy static member for avoiding annoying warning in empty functions... --- vcg/simplex/face/base.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/vcg/simplex/face/base.h b/vcg/simplex/face/base.h index 50cfd973..db69db99 100644 --- a/vcg/simplex/face/base.h +++ b/vcg/simplex/face/base.h @@ -24,6 +24,9 @@ History $Log: not supported by cvs2svn $ +Revision 1.31 2005/11/01 18:16:36 cignoni +Added intialization of _flags to zero in the default constructor of face + Revision 1.30 2005/10/13 09:25:43 cignoni Added cFFp and cVFp const member functions @@ -658,7 +661,8 @@ public: return fs[j]; #else assert(0); - return (FFTYPE *)this; + static FFTYPE * DummyVal; + return DummyVal; #endif } inline const FFTYPE * cVFp( const int j ) const {return VFp(j);}