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

Removes dependency on Boost.Hana.

This commit is contained in:
Marcelo Zimbres
2022-12-03 22:29:04 +01:00
parent 449b5f7e7c
commit 1e7c176f92
3 changed files with 23 additions and 22 deletions

View File

@@ -33,7 +33,7 @@ awaitable_type echo(tcp_socket socket)
std::size_t n = co_await socket.async_read_some(net::buffer(data), use_awaitable);
co_await async_write(socket, net::buffer(data, n), use_awaitable);
}
} catch (std::exception const& e) {
} catch (std::exception const&) {
//std::printf("echo Exception: %s\n", e.what());
}
}