diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2025-05-30 07:29:51 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-30 07:29:51 +1000 |
commit | e88912032d368a197ad92a33d18c26721c28ffe5 (patch) | |
tree | f59a13b5d1286227d9740a36de7ec64f1d481ad4 /source/core/StarPythonic.hpp | |
parent | c36f91a7c4b7a4cb1dacc11acdcc2f024b7c2fd6 (diff) | |
parent | fb661a7d9826ab965d8c1a9107e02be5266bee89 (diff) |
Merge pull request #251 from IsaacClark69/patch-1
Update StarPythonic.hpp [skip ci]
Diffstat (limited to 'source/core/StarPythonic.hpp')
-rw-r--r-- | source/core/StarPythonic.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/core/StarPythonic.hpp b/source/core/StarPythonic.hpp index a5f76dc..1248b72 100644 --- a/source/core/StarPythonic.hpp +++ b/source/core/StarPythonic.hpp @@ -384,13 +384,13 @@ public: RangeIterator operator++(int) { RangeIterator tmp(*this); - ++this; + ++(*this); return tmp; } RangeIterator operator--(int) { RangeIterator tmp(*this); - --this; + --(*this); return tmp; } |