fix missing overrides

Found with clang's -Winconsistent-missing-destructor-override Signed-off-by: 's avatarRosen Penev <rosenp@gmail.com>
parent b5d1a090
...@@ -58,7 +58,7 @@ public: ...@@ -58,7 +58,7 @@ public:
*/ */
IcyInputStream(InputStreamPtr _input, IcyInputStream(InputStreamPtr _input,
std::shared_ptr<IcyMetaDataParser> _parser); std::shared_ptr<IcyMetaDataParser> _parser);
virtual ~IcyInputStream() noexcept; ~IcyInputStream() noexcept override;
IcyInputStream(const IcyInputStream &) = delete; IcyInputStream(const IcyInputStream &) = delete;
IcyInputStream &operator=(const IcyInputStream &) = delete; IcyInputStream &operator=(const IcyInputStream &) = delete;
......
...@@ -52,7 +52,7 @@ public: ...@@ -52,7 +52,7 @@ public:
Mutex &_mutex) noexcept Mutex &_mutex) noexcept
:InputStream(_uri, _mutex) {} :InputStream(_uri, _mutex) {}
virtual ~ProxyInputStream() noexcept; ~ProxyInputStream() noexcept override;
ProxyInputStream(const ProxyInputStream &) = delete; ProxyInputStream(const ProxyInputStream &) = delete;
ProxyInputStream &operator=(const ProxyInputStream &) = delete; ProxyInputStream &operator=(const ProxyInputStream &) = delete;
......
...@@ -87,7 +87,7 @@ class CompositeStorage final : public Storage { ...@@ -87,7 +87,7 @@ class CompositeStorage final : public Storage {
public: public:
CompositeStorage() noexcept; CompositeStorage() noexcept;
virtual ~CompositeStorage(); ~CompositeStorage() override;
/** /**
* Get the #Storage at the specified mount point. Returns * Get the #Storage at the specified mount point. Returns
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment