From fb661a7d9826ab965d8c1a9107e02be5266bee89 Mon Sep 17 00:00:00 2001 From: IsaacClark69 <74121077+IsaacClark69@users.noreply.github.com> Date: Thu, 29 May 2025 09:17:14 +0200 Subject: Update StarPythonic.hpp https://github.com/OpenStarbound/OpenStarbound/issues/249 --- source/core/StarPythonic.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/core/StarPythonic.hpp') 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; } -- cgit v1.2.3