mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 22:29:21 +00:00
DolphinQt: Removed unused this capture in lambda
The Host constructor sets a callback on a lambda that in turn calls Host_UpdateDisasmDialog. Since that function is not a member function capturing this is unnecessary. Fixes -Wunused-lambda-capture warning on freebsd-x64.
This commit is contained in:
parent
d2eb846e6a
commit
6e13d35026
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@
|
||||||
|
|
||||||
Host::Host()
|
Host::Host()
|
||||||
{
|
{
|
||||||
State::SetOnAfterLoadCallback([this] { Host_UpdateDisasmDialog(); });
|
State::SetOnAfterLoadCallback([] { Host_UpdateDisasmDialog(); });
|
||||||
}
|
}
|
||||||
|
|
||||||
Host::~Host()
|
Host::~Host()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue