2
0
mirror of https://github.com/boostorg/redis.git synced 2026-01-19 04:42:09 +00:00

Fixed unused variable warning in connection_base

This commit is contained in:
Ruben Perez
2024-03-31 17:22:08 +02:00
committed by Marcelo
parent da48368d53
commit 0af1c2e73d

View File

@@ -113,7 +113,7 @@ struct exec_op {
asio::coroutine coro{};
template <class Self>
void operator()(Self& self , system::error_code ec = {}, std::size_t = 0)
void operator()(Self& self , system::error_code = {}, std::size_t = 0)
{
BOOST_ASIO_CORO_REENTER (coro)
{