C++20: Avoid implicit capture

このコミットが含まれているのは:
Albert S. 2021-10-25 18:09:46 +02:00
コミット ed61003636
1個のファイルの変更1行の追加1行の削除

ファイルの表示

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