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:
*/
IcyInputStream(InputStreamPtr _input,
std::shared_ptr<IcyMetaDataParser> _parser);
virtual ~IcyInputStream() noexcept;
~IcyInputStream() noexcept override;
IcyInputStream(const IcyInputStream &) = delete;
IcyInputStream &operator=(const IcyInputStream &) = delete;
......
......@@ -52,7 +52,7 @@ public:
Mutex &_mutex) noexcept
:InputStream(_uri, _mutex) {}
virtual ~ProxyInputStream() noexcept;
~ProxyInputStream() noexcept override;
ProxyInputStream(const ProxyInputStream &) = delete;
ProxyInputStream &operator=(const ProxyInputStream &) = delete;
......
......@@ -87,7 +87,7 @@ class CompositeStorage final : public Storage {
public:
CompositeStorage() noexcept;
virtual ~CompositeStorage();
~CompositeStorage() override;
/**
* 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