mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-04 17:10:47 +00:00
Fix another unused lambda capture
This commit is contained in:
@@ -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();
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user