fix missing overrides

Found with clang's -Winconsistent-missing-destructor-override

Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
Rosen Penev 2020-03-15 21:58:40 -07:00
parent b5d1a09010
commit 88d56c01e7
No known key found for this signature in database
GPG Key ID: 36D31CFA845F0E3B
3 changed files with 3 additions and 3 deletions

View File

@ -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;

View File

@ -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;

View File

@ -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