Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
88d56c01
Unverified
Commit
88d56c01
authored
Mar 15, 2020
by
Rosen Penev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix missing overrides
Found with clang's -Winconsistent-missing-destructor-override Signed-off-by:
Rosen Penev
<
rosenp@gmail.com
>
parent
b5d1a090
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
IcyInputStream.hxx
src/input/IcyInputStream.hxx
+1
-1
ProxyInputStream.hxx
src/input/ProxyInputStream.hxx
+1
-1
CompositeStorage.hxx
src/storage/CompositeStorage.hxx
+1
-1
No files found.
src/input/IcyInputStream.hxx
View file @
88d56c01
...
...
@@ -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
;
...
...
src/input/ProxyInputStream.hxx
View file @
88d56c01
...
...
@@ -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
;
...
...
src/storage/CompositeStorage.hxx
View file @
88d56c01
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment