C++20: Avoid implicit capture

这个提交包含在:
Albert S. 2021-10-25 18:09:46 +02:00
父节点 ad42c0f046
当前提交 ed61003636

查看文件

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