added a missing cVFi()
This commit is contained in:
parent
866abb0921
commit
fc6483307b
|
@ -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; }
|
||||
|
|
Loading…
Reference in New Issue