mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-11 02:07:56 -05:00
GCC 12 fixes
This commit is contained in:
@ -43,7 +43,7 @@ static void ValidateUses(const IR::Program& program) {
|
||||
}
|
||||
}
|
||||
}
|
||||
for (const auto [inst, uses] : actual_uses) {
|
||||
for (const auto& [inst, uses] : actual_uses) {
|
||||
if (inst->UseCount() != uses) {
|
||||
throw LogicError("Invalid uses in block: {}", IR::DumpProgram(program));
|
||||
}
|
||||
|
Reference in New Issue
Block a user