Local build fixes

This commit is contained in:
Evert Prants 2025-01-19 14:09:41 +02:00
parent 3d15c1e3fd
commit 63a3f2a616
Signed by: evert
GPG Key ID: 1688DA83D222D0B5
2 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@
"VCPKG_OVERLAY_TRIPLETS": "${sourceParentDir}/triplets", "VCPKG_OVERLAY_TRIPLETS": "${sourceParentDir}/triplets",
"CMAKE_VERBOSE_MAKEFILE": true, "CMAKE_VERBOSE_MAKEFILE": true,
"BUILD_TESTING": true, "BUILD_TESTING": true,
"STAR_ENABLE_STEAM_INTEGRATION": false, "STAR_ENABLE_STEAM_INTEGRATION": true,
"STAR_ENABLE_DISCORD_INTEGRATION": false "STAR_ENABLE_DISCORD_INTEGRATION": false
} }
}, },

View File

@ -384,13 +384,13 @@ public:
RangeIterator operator++(int) { RangeIterator operator++(int) {
RangeIterator tmp(*this); RangeIterator tmp(*this);
++this; tmp += 1;
return tmp; return tmp;
} }
RangeIterator operator--(int) { RangeIterator operator--(int) {
RangeIterator tmp(*this); RangeIterator tmp(*this);
--this; tmp -= 1;
return tmp; return tmp;
} }