mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-14 05:22:24 +00:00
LookupServer: Remove unused this capture in a lambda function
this was causing CI to fail
This commit is contained in:
parent
e354f5986f
commit
713a9ca5f1
Notes:
sideshowbarker
2024-07-17 23:16:14 +09:00
Author: https://github.com/Hendiadyoin1
Commit: 713a9ca5f1
Pull-request: https://github.com/SerenityOS/serenity/pull/11143
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ LookupServer::LookupServer()
|
|||
m_mdns = MulticastDNS::construct(this);
|
||||
|
||||
m_local_server = Core::LocalServer::construct(this);
|
||||
m_local_server->on_accept = [this](auto client_socket) {
|
||||
m_local_server->on_accept = [](auto client_socket) {
|
||||
static int s_next_client_id = 0;
|
||||
int client_id = ++s_next_client_id;
|
||||
IPC::new_client_connection<ClientConnection>(move(client_socket), client_id);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue