From 9bbd152ed41063144ca8c8d4aa531f613005be84 Mon Sep 17 00:00:00 2001 From: Nitch2024 Date: Sat, 29 Mar 2025 14:12:35 -0700 Subject: [PATCH] Fixing lint issue reported from auto build --- Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp index 566b58e241..1bfbe829f4 100644 --- a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp @@ -646,9 +646,9 @@ void CodeViewWidget::OnContextMenu() run_until_menu->setEnabled(!target.isEmpty()); follow_branch_action->setEnabled(follow_branch_enabled); - for (auto* action : - {copy_address_action, copy_line_action, copy_whole_line_action, copy_hex_action, function_action, run_to_action, - ppc_action, insert_blr_action, insert_nop_action, replace_action, assemble_action}) + for (auto* action : {copy_address_action, copy_line_action, copy_whole_line_action, + copy_hex_action, function_action, run_to_action, ppc_action, + insert_blr_action, insert_nop_action, replace_action, assemble_action}) { action->setEnabled(running); }