1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-22 16:34:13 +00:00

Fix clang warning

This commit is contained in:
Dimitris Apostolou 2021-01-21 11:07:01 +02:00
parent 6fc5f88a3b
commit 67dab9b6d2
No known key found for this signature in database
GPG Key ID: 4B5D20E938204A8A

View File

@ -1519,7 +1519,7 @@ namespace transport
boost::asio::streambuf * readbuff = new boost::asio::streambuf;
boost::asio::async_read_until(conn->GetSocket(), *readbuff, "\r\n\r\n",
[this, readbuff, timer, conn] (const boost::system::error_code & ec, std::size_t transferred)
[readbuff, timer, conn] (const boost::system::error_code & ec, std::size_t transferred)
{
if(ec)
{