added postfix ++ operator to VFIterator
This commit is contained in:
parent
74c7b308ed
commit
c28ee8c5b4
|
@ -497,7 +497,10 @@ public:
|
||||||
f = t->VFp(z);
|
f = t->VFp(z);
|
||||||
z = t->VFi(z);
|
z = t->VFi(z);
|
||||||
}
|
}
|
||||||
|
void operator++(int)
|
||||||
|
{
|
||||||
|
(*this)++;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
/*@}*/
|
/*@}*/
|
||||||
|
|
Loading…
Reference in New Issue