fix license
All checks were successful
eden-license / license-header (pull_request) Successful in 23s

Signed-off-by: lizzie <lizzie@eden-emu.dev>
This commit is contained in:
lizzie 2025-09-28 18:04:38 +00:00 committed by crueter
parent 3bc144cb5e
commit e11f4f3171
2 changed files with 4 additions and 1 deletions

View file

@ -1,3 +1,6 @@
// SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project
// SPDX-License-Identifier: GPL-3.0-or-later
/* This file is part of the dynarmic project. /* This file is part of the dynarmic project.
* Copyright (c) 2016 MerryMage * Copyright (c) 2016 MerryMage
* SPDX-License-Identifier: 0BSD * SPDX-License-Identifier: 0BSD

View file

@ -46,7 +46,7 @@ Block::iterator Block::PrependNewInst(iterator insertion_point, Opcode opcode, s
inst->SetArg(index, arg); inst->SetArg(index, arg);
index++; index++;
}); });
return instructions.insert(insertion_point, *inst);; return instructions.insert(insertion_point, *inst);
} }
static std::string TerminalToString(const Terminal& terminal_variant) noexcept { static std::string TerminalToString(const Terminal& terminal_variant) noexcept {