File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed
http/src/network/http/v2/client Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -57,12 +57,20 @@ namespace network {
57
57
/* *
58
58
* \brief Copy constructor.
59
59
*/
60
- request_options (request_options const &) = default ;
60
+ request_options (request_options const &other)
61
+ : resolve_timeout_(other.resolve_timeout_)
62
+ , read_timeout_(other.read_timeout_)
63
+ , total_timeout_(other.total_timeout_)
64
+ , max_redirects_(other.max_redirects_) { }
61
65
62
66
/* *
63
67
* \brief Move constructor.
64
68
*/
65
- request_options (request_options &&) = default ;
69
+ request_options (request_options &&other)
70
+ : resolve_timeout_(std::move(other.resolve_timeout_))
71
+ , read_timeout_(std::move(other.read_timeout_))
72
+ , total_timeout_(std::move(other.total_timeout_))
73
+ , max_redirects_(std::move(other.max_redirects_)) { }
66
74
67
75
/* *
68
76
* \brief Assignment operator.
You can’t perform that action at this time.
0 commit comments