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.
2 parents 04957c0 + 568fda6 commit 68aeb4aCopy full SHA for 68aeb4a
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