diff options
author | Lioncash <mathew1800@gmail.com> | 2019-02-27 17:29:04 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-02-27 17:30:36 +0100 |
commit | 456c7043bd71f2395bccaec0ee0de17dd5b33e7c (patch) | |
tree | 6cf0700fd78a21b582b8f4022310806e81cbdce6 /src | |
parent | Merge pull request #2161 from lioncash/handle-table (diff) | |
download | yuzu-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 |
Diffstat (limited to 'src')
-rw-r--r-- | src/yuzu/compatdb.cpp | 2 |
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()); |