From cde1c38689188efbfd47cd9509beb348284d486b Mon Sep 17 00:00:00 2001 From: Mark Rowe Date: Fri, 1 Aug 2025 00:09:42 -0700 Subject: Update remaining projects to C++20 --- plugins/warp/ui/matches.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/warp/ui/matches.cpp') diff --git a/plugins/warp/ui/matches.cpp b/plugins/warp/ui/matches.cpp index ed77085a..7e22e224 100644 --- a/plugins/warp/ui/matches.cpp +++ b/plugins/warp/ui/matches.cpp @@ -81,7 +81,7 @@ WarpCurrentFunctionWidget::WarpCurrentFunctionWidget(FunctionRef current) }); - connect(m_tableWidget->GetTableView(), &QTableView::doubleClicked, this, [=](const QModelIndex &index) { + connect(m_tableWidget->GetTableView(), &QTableView::doubleClicked, this, [=, this](const QModelIndex &index) { if (m_current == nullptr) return; // Get the selected row for the given index. -- cgit v1.3.1