Added dummy static member for avoiding annoying warning in empty functions...

This commit is contained in:
Paolo Cignoni 2005-11-12 18:39:54 +00:00
parent d3c1165fe6
commit fab34558d7
1 changed files with 5 additions and 1 deletions

View File

@ -24,6 +24,9 @@
History History
$Log: not supported by cvs2svn $ $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 Revision 1.30 2005/10/13 09:25:43 cignoni
Added cFFp and cVFp const member functions Added cFFp and cVFp const member functions
@ -658,7 +661,8 @@ public:
return fs[j]; return fs[j];
#else #else
assert(0); assert(0);
return (FFTYPE *)this; static FFTYPE * DummyVal;
return DummyVal;
#endif #endif
} }
inline const FFTYPE * cVFp( const int j ) const {return VFp(j);} inline const FFTYPE * cVFp( const int j ) const {return VFp(j);}