removed the return type from the ++ operator of the vfi iterator

This commit is contained in:
Paolo Cignoni 2013-09-10 10:54:40 +00:00
parent 46dc55fb3c
commit 344de42c2e
1 changed files with 78 additions and 79 deletions

View File

@ -430,11 +430,10 @@ public:
inline VertexType * const & V2() const { return f->V2(z);}
bool End() const {return f==0;}
VFIFaceType *operator++() {
void operator++() {
FaceType* t = f;
f = f->VFp(z);
f = t->VFp(z);
z = t->VFi(z);
return f;
}
};