added a missing cVFi()

This commit is contained in:
Paolo Cignoni 2010-02-23 16:45:45 +00:00
parent 866abb0921
commit fc6483307b
1 changed files with 3 additions and 2 deletions

View File

@ -584,8 +584,9 @@ private:
template <class T> class EmptyVFAdj: public T {
public:
typename T::FacePointer &VFp() { static typename T::FacePointer fp=0; assert(0); return fp; }
typename T::FacePointer cVFp() { static typename T::FacePointer fp=0; assert(0); return fp; }
typename T::FacePointer cVFp() const { static typename T::FacePointer fp=0; assert(0); return fp; }
int &VFi(){static int z=0; return z;};
int cVFi() const {static int z=0; return z;};
template < class LeftV>
void ImportLocal(const LeftV & left ) { T::ImportLocal( left); }
static bool HasVFAdjacency() { return false; }