Skip to content

Commit

Permalink
Removed unused lambda capture.
Browse files Browse the repository at this point in the history
  • Loading branch information
5cript committed Oct 24, 2023
1 parent 4f94fd9 commit f65b0ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/roar/client.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ namespace Roar
withLowerLayerDo([timeout](auto& socket) {
socket.expires_after(timeout);
});
withStreamDo([this, timeout, d = std::move(d)](auto& socket) mutable {
withStreamDo([this, d = std::move(d)](auto& socket) mutable {
struct Context
{
Response<ResponseBodyT> response{};
Expand Down

0 comments on commit f65b0ee

Please sign in to comment.