Browse Source

Merge pull request #1623 from rex4539/fix-warnings2

Fix clang warning
pull/1626/head
orignal 4 years ago committed by GitHub
parent
commit
96e9608036
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      libi2pd/NTCP2.cpp

2
libi2pd/NTCP2.cpp

@ -1519,7 +1519,7 @@ namespace transport @@ -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)
{

Loading…
Cancel
Save