fix missing overrides
Found with clang's -Winconsistent-missing-destructor-override Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
parent
b5d1a09010
commit
88d56c01e7
@ -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:
|
|||||||
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 {
|
|||||||
|
|
||||||
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
|
||||||
|
Loading…
Reference in New Issue
Block a user