Skip to content

Commit cdbc67b

Browse files
committed
Fix in client_options move constructor.
1 parent 6039ee9 commit cdbc67b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

http/src/network/http/v2/client/client.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ namespace network {
7474
* \brief Move constructor.
7575
*/
7676
client_options(client_options &&other)
77-
: io_service_(std::move(io_service_))
77+
: io_service_(std::move(other.io_service_))
7878
, follow_redirects_(std::move(other.follow_redirects_))
7979
, cache_resolved_(std::move(other.cache_resolved_))
8080
, use_proxy_(std::move(other.use_proxy_))

0 commit comments

Comments
 (0)