diff --git a/include/continuable/detail/connection/connection-seq.hpp b/include/continuable/detail/connection/connection-seq.hpp index 71ba9a0..7e274c0 100644 --- a/include/continuable/detail/connection/connection-seq.hpp +++ b/include/continuable/detail/connection/connection-seq.hpp @@ -147,24 +147,24 @@ struct connection_finalizer { template static auto finalize(Connection&& connection, util::ownership ownership) { - auto result = + auto res = aggregated::box_continuables(std::forward(connection)); - auto signature = aggregated::hint_of_data(); + auto signature = aggregated::hint_of_data(); return base::attorney::create_from( - [result = std::move(result)](auto&& callback) mutable { + [res = std::move(res)](auto&& callback) mutable { // The data from which the visitor is constructed in-place using data_t = seq::sequential_dispatch_data, - std::decay_t>; + std::decay_t>; // The visitor type using visitor_t = seq::sequential_dispatch_visitor; traverse_pack_async(async_traverse_in_place_tag{}, data_t{std::forward(callback), - std::move(result)}); + std::move(res)}); }, signature, std::move(ownership)); }