C++20: Avoid implicit capture

This commit is contained in:
Albert S. 2021-10-25 18:09:46 +02:00
부모 ad42c0f046
커밋 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)
{