mirror of
https://github.com/boostorg/beast.git
synced 2025-07-29 20:37:31 +02:00
Fix compiler warning in WebSocket async shutdown:
Credit: https://github.com/KnoerleMan closes 2174
This commit is contained in:
committed by
Richard Hodges
parent
02a171dd1a
commit
fc673aa09b
@ -1,3 +1,4 @@
|
||||
* Fix compiler warning in WebSSocket async shutdown.
|
||||
* Remove Travis CI status.
|
||||
* Repoint B2 refs to new non-boostorg home.
|
||||
* Limit async_write instantiations in websocket ops.
|
||||
|
@ -62,7 +62,7 @@ struct ssl_shutdown_op
|
||||
|
||||
template<class Self>
|
||||
void
|
||||
operator()(Self& self, error_code ec = {}, std::size_t bytes_transferred = 0)
|
||||
operator()(Self& self, error_code ec = {}, std::size_t = 0)
|
||||
{
|
||||
BOOST_ASIO_CORO_REENTER(*this)
|
||||
{
|
||||
|
Reference in New Issue
Block a user