mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 08:38:12 +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
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