From 006ba0e103a0f9a5a17d7bf7d0ba56e9bc93becf Mon Sep 17 00:00:00 2001 From: baldurk Date: Wed, 31 Jul 2019 20:18:41 +0100 Subject: [PATCH] Fix another unused lambda capture --- qrenderdoc/Windows/Dialogs/RemoteManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qrenderdoc/Windows/Dialogs/RemoteManager.cpp b/qrenderdoc/Windows/Dialogs/RemoteManager.cpp index 577889a8c..2fb467eb7 100644 --- a/qrenderdoc/Windows/Dialogs/RemoteManager.cpp +++ b/qrenderdoc/Windows/Dialogs/RemoteManager.cpp @@ -610,7 +610,7 @@ void RemoteManager::on_connect_clicked() } // kick off a thread to check the status - LambdaThread *th = new LambdaThread([ this, h = host ]() { + LambdaThread *th = new LambdaThread([h = host]() { RemoteHost host = h; host.CheckStatus(); });