diff --git a/src/lib/curl/Multi.hxx b/src/lib/curl/Multi.hxx index 359a6e35a..d8f8470ff 100644 --- a/src/lib/curl/Multi.hxx +++ b/src/lib/curl/Multi.hxx @@ -69,15 +69,15 @@ public: curl_multi_cleanup(handle); } - operator bool() const noexcept { - return handle != nullptr; - } - CurlMulti &operator=(CurlMulti &&src) noexcept { std::swap(handle, src.handle); return *this; } + operator bool() const noexcept { + return handle != nullptr; + } + CURLM *Get() noexcept { return handle; }