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 04957c0 commit 568fda6Copy full SHA for 568fda6
httplib.h
@@ -213,7 +213,9 @@ class DataSink {
213
public:
214
DataSink() = default;
215
DataSink(const DataSink &) = delete;
216
- DataSink(const DataSink &&) = delete;
+ DataSink& operator=(const DataSink &) = delete;
217
+ DataSink(DataSink &&) = delete;
218
+ DataSink& operator=(DataSink &&) = delete;
219
220
std::function<void(const char *data, size_t data_len)> write;
221
std::function<void()> done;
0 commit comments