Skip to content

Commit af1c0e1

Browse files
committed
Removing experimental comment on progress handler.
1 parent 6f131b1 commit af1c0e1

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

Release/include/cpprest/http_client.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,9 @@ class http_client_config
163163
/// Set the web proxy object
164164
/// </summary>
165165
/// <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)
167167
{
168-
m_proxy = proxy;
168+
m_proxy = std::move(proxy);
169169
}
170170

171171
/// <summary>

Release/include/cpprest/http_msg.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -972,9 +972,6 @@ class http_request
972972
/// progress: the number of bytes that have been processed so far.
973973
/// </param>
974974
/// <remarks>
975-
/// **EXPERIMENTAL**
976-
/// This function is subject to change based on user feedback.
977-
///
978975
/// This function will be called at least once for upload and at least once for
979976
/// the download body, unless there is some exception generated. An HTTP message with an error
980977
/// code is not an exception. This means, that even if there is no body, the progress handler

0 commit comments

Comments
 (0)