Browse Source
Merge pull request #2173 from lioncash/capture
yuzu/compatdb: Remove unused lambda capture
pull/15/merge
bunnei
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/yuzu/compatdb.cpp
|
|
|
@ -61,7 +61,7 @@ void CompatDB::Submit() { |
|
|
|
button(QWizard::CancelButton)->setVisible(false); |
|
|
|
|
|
|
|
testcase_watcher.setFuture(QtConcurrent::run( |
|
|
|
[this]() { return Core::System::GetInstance().TelemetrySession().SubmitTestcase(); })); |
|
|
|
[] { return Core::System::GetInstance().TelemetrySession().SubmitTestcase(); })); |
|
|
|
break; |
|
|
|
default: |
|
|
|
LOG_ERROR(Frontend, "Unexpected page: {}", currentId()); |
|
|
|
|