C++20: Avoid implicit capture

Este commit está contenido en:
Albert S. 2021-10-25 18:09:46 +02:00
padre ad42c0f046
commit ed61003636
Se han modificado 1 ficheros con 1 adiciones y 1 borrados

Ver fichero

@ -36,7 +36,7 @@ bool CLIServer::detachServer(std::string socketpath)
exit(EXIT_FAILURE);
}
auto worker = [=]
auto worker = [this, s]
{
while(true)
{