From ef82f953c0137fb778f1ac4e67a4cec0a246a4cc Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Wed, 1 Feb 2023 18:47:03 -0800 Subject: [PATCH] do the same for Io functions Signed-off-by: Rosen Penev --- include/exiv2/basicio.hpp | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/include/exiv2/basicio.hpp b/include/exiv2/basicio.hpp index 3287c951..17922046 100644 --- a/include/exiv2/basicio.hpp +++ b/include/exiv2/basicio.hpp @@ -924,13 +924,6 @@ class EXIV2API HttpIo : public RemoteIo { */ explicit HttpIo(const std::string& url, size_t blockSize = 1024); - ~HttpIo() override = default; - // NOT IMPLEMENTED - //! Copy constructor - HttpIo(const HttpIo&) = delete; - //! Assignment operator - HttpIo& operator=(const HttpIo&) = delete; - private: // Pimpl idiom class HttpImpl; @@ -969,13 +962,6 @@ class EXIV2API CurlIo : public RemoteIo { */ size_t write(BasicIo& src) override; - ~CurlIo() override = default; - // NOT IMPLEMENTED - //! Copy constructor - CurlIo(const CurlIo&) = delete; - //! Assignment operator - CurlIo& operator=(const CurlIo&) = delete; - protected: // Pimpl idiom class CurlImpl;