added postfix ++ operator to VFIterator

This commit is contained in:
Luigi Malomo 2020-02-19 15:21:22 +01:00
parent 74c7b308ed
commit c28ee8c5b4
1 changed files with 4 additions and 1 deletions

View File

@ -497,7 +497,10 @@ public:
f = t->VFp(z);
z = t->VFi(z);
}
void operator++(int)
{
(*this)++;
}
};
/*@}*/