diff options
| author | Jordan Woyak <jordan.woyak@gmail.com> | 2025-06-14 03:49:47 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-14 03:49:47 -0500 |
| commit | 2047eaf1d86839b53bb92cf79cfae8be2a568ed6 (patch) | |
| tree | b6dd8deb5f1bf6d110d71a73521a241d37c577b1 /Source/Core/DolphinQt/Debugger/RegisterWidget.cpp | |
| parent | 95f6c76713e6c2a6b50f1a149a7886e72fea6ec7 (diff) | |
| parent | ca8f9b672b3d8da3e2974802e89f6c6b6e23d99e (diff) | |
Merge pull request #13671 from tygyh/Source/Remove-redundant-lambda-parameter-lists
Source: Remove redundant lambda parameter lists
Diffstat (limited to 'Source/Core/DolphinQt/Debugger/RegisterWidget.cpp')
| -rw-r--r-- | Source/Core/DolphinQt/Debugger/RegisterWidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinQt/Debugger/RegisterWidget.cpp b/Source/Core/DolphinQt/Debugger/RegisterWidget.cpp index eb6f23d543..01ff696d83 100644 --- a/Source/Core/DolphinQt/Debugger/RegisterWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/RegisterWidget.cpp @@ -176,7 +176,7 @@ void RegisterWidget::ShowContextMenu() const std::string type_string = fmt::format("{}{}", type == RegisterType::gpr ? "r" : "f", m_table->currentItem()->row()); menu->addAction(tr("Run until hit (ignoring breakpoints)"), - [this, type_string]() { AutoStep(type_string); }); + [this, type_string] { AutoStep(type_string); }); } for (auto* action : {view_hex, view_int, view_uint, view_float, view_double}) |
