fixed pos operator

This commit is contained in:
Luigi Malomo 2020-03-03 19:06:28 +01:00
parent 3285c6b1e5
commit 62a9ed2fd1
1 changed files with 1 additions and 1 deletions

View File

@ -499,7 +499,7 @@ public:
} }
void operator++(int) void operator++(int)
{ {
(*this)++; ++(*this);
} }
}; };