Add suggested changes

Co-authored-by: Exzap <Exzap@users.noreply.github.com>
This commit is contained in:
Exverge 2025-05-26 09:15:08 -04:00
parent 8f2ede4057
commit 5260fb2386
No known key found for this signature in database
GPG key ID: 19AAFC0AC6A9B35A

View file

@ -169,8 +169,10 @@ struct AArch64GenContext_t : CodeGenerator
bool processAllJumps()
{
for (auto&& [jumpStart, jumpInfo] : jumps)
for (auto jump : jumps)
{
auto jumpStart = jump.first;
auto jumpInfo = jump.second;
bool success = std::visit(
[&, this](const auto& jump) {
setSize(jumpStart);