We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent baa8c9b commit ba2adb3Copy full SHA for ba2adb3
Release/src/http/client/http_client.cpp
@@ -280,9 +280,11 @@ class http_pipeline
280
http_pipeline(std::shared_ptr<details::_http_client_communicator> last) : m_last_stage(std::move(last))
281
{}
282
283
- // No copy or assignment.
284
- http_pipeline & operator=(const http_pipeline &) = delete;
+ // pplx::extensibility::recursive_lock_t does not support move/copy, but does not delete the functions either.
285
http_pipeline(const http_pipeline &) = delete;
+ http_pipeline(http_pipeline &&) = delete;
286
+ http_pipeline & operator=(const http_pipeline &) = delete;
287
+ http_pipeline & operator=(http_pipeline &&) = delete;
288
289
/// <summary>
290
/// Initiate an http request into the pipeline
0 commit comments