removed the return type from the ++ operator of the vfi iterator
This commit is contained in:
parent
46dc55fb3c
commit
344de42c2e
|
@ -430,11 +430,10 @@ public:
|
||||||
inline VertexType * const & V2() const { return f->V2(z);}
|
inline VertexType * const & V2() const { return f->V2(z);}
|
||||||
|
|
||||||
bool End() const {return f==0;}
|
bool End() const {return f==0;}
|
||||||
VFIFaceType *operator++() {
|
void operator++() {
|
||||||
FaceType* t = f;
|
FaceType* t = f;
|
||||||
f = f->VFp(z);
|
f = t->VFp(z);
|
||||||
z = t->VFi(z);
|
z = t->VFi(z);
|
||||||
return f;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue