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

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 6d11cb56b0
commit f336634685
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.
* Copyright (c) 2016 MerryMage
* SPDX-License-Identifier: 0BSD

View file

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