File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -163,9 +163,9 @@ class http_client_config
163
163
// / Set the web proxy object
164
164
// / </summary>
165
165
// / <param name="proxy">A reference to the web proxy object.</param>
166
- void set_proxy (const web_proxy& proxy)
166
+ void set_proxy (web_proxy proxy)
167
167
{
168
- m_proxy = proxy;
168
+ m_proxy = std::move ( proxy) ;
169
169
}
170
170
171
171
// / <summary>
Original file line number Diff line number Diff line change @@ -972,9 +972,6 @@ class http_request
972
972
// / progress: the number of bytes that have been processed so far.
973
973
// / </param>
974
974
// / <remarks>
975
- // / **EXPERIMENTAL**
976
- // / This function is subject to change based on user feedback.
977
- // /
978
975
// / This function will be called at least once for upload and at least once for
979
976
// / the download body, unless there is some exception generated. An HTTP message with an error
980
977
// / code is not an exception. This means, that even if there is no body, the progress handler
You can’t perform that action at this time.
0 commit comments