summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-02-27 11:29:04 -0500
committerLioncash <mathew1800@gmail.com>2019-02-27 11:30:36 -0500
commit456c7043bd71f2395bccaec0ee0de17dd5b33e7c (patch)
tree6cf0700fd78a21b582b8f4022310806e81cbdce6
parenteb5a3dd1c7b4c69c708924208acd2077ff08308f (diff)
yuzu/compatdb: Remove unused lambda capture
Silences a compiler warning with clang.
-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());