summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-02-27 17:29:04 +0100
committerLioncash <mathew1800@gmail.com>2019-02-27 17:30:36 +0100
commit456c7043bd71f2395bccaec0ee0de17dd5b33e7c (patch)
tree6cf0700fd78a21b582b8f4022310806e81cbdce6
parentMerge pull request #2161 from lioncash/handle-table (diff)
downloadyuzu-456c7043bd71f2395bccaec0ee0de17dd5b33e7c.tar
yuzu-456c7043bd71f2395bccaec0ee0de17dd5b33e7c.tar.gz
yuzu-456c7043bd71f2395bccaec0ee0de17dd5b33e7c.tar.bz2
yuzu-456c7043bd71f2395bccaec0ee0de17dd5b33e7c.tar.lz
yuzu-456c7043bd71f2395bccaec0ee0de17dd5b33e7c.tar.xz
yuzu-456c7043bd71f2395bccaec0ee0de17dd5b33e7c.tar.zst
yuzu-456c7043bd71f2395bccaec0ee0de17dd5b33e7c.zip
-rw-r--r--src/yuzu/compatdb.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/compatdb.cpp b/src/yuzu/compatdb.cpp
index 5f0896f84..c09a06520 100644
--- a/src/yuzu/compatdb.cpp
+++ b/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());