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
6d3190fe
Unverified
Commit
6d3190fe
authored
Feb 02, 2020
by
Rosen Penev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[clang-tidy] use = default
Found with modernize-use-equals-default Signed-off-by:
Rosen Penev
<
rosenp@gmail.com
>
parent
dea0cc16
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
20 deletions
+10
-20
Directory.cxx
src/db/plugins/upnp/Directory.cxx
+2
-4
Object.cxx
src/db/plugins/upnp/Object.cxx
+2
-4
ContentDirectoryService.cxx
src/lib/upnp/ContentDirectoryService.cxx
+2
-4
Device.cxx
src/lib/upnp/Device.cxx
+2
-4
Filter.cxx
src/song/Filter.cxx
+2
-4
No files found.
src/db/plugins/upnp/Directory.cxx
View file @
6d3190fe
...
...
@@ -30,10 +30,8 @@
#include <string.h>
UPnPDirContent
::~
UPnPDirContent
()
{
/* this destructor exists here just so it won't get inlined */
}
/* this destructor exists here just so it won't get inlined */
UPnPDirContent
::~
UPnPDirContent
()
=
default
;
gcc_pure
static
UPnPDirObject
::
ItemClass
...
...
src/db/plugins/upnp/Object.cxx
View file @
6d3190fe
...
...
@@ -19,7 +19,5 @@
#include "Object.hxx"
UPnPDirObject
::~
UPnPDirObject
()
noexcept
{
/* this destructor exists here just so it won't get inlined */
}
/* this destructor exists here just so it won't get inlined */
UPnPDirObject
::~
UPnPDirObject
()
noexcept
=
default
;
src/lib/upnp/ContentDirectoryService.cxx
View file @
6d3190fe
...
...
@@ -44,10 +44,8 @@ ContentDirectoryService::ContentDirectoryService(const UPnPDevice &device,
}
}
ContentDirectoryService
::~
ContentDirectoryService
()
noexcept
{
/* this destructor exists here just so it won't get inlined */
}
/* this destructor exists here just so it won't get inlined */
ContentDirectoryService
::~
ContentDirectoryService
()
noexcept
=
default
;
std
::
forward_list
<
std
::
string
>
ContentDirectoryService
::
getSearchCapabilities
(
UpnpClient_Handle
hdl
)
const
...
...
src/lib/upnp/Device.cxx
View file @
6d3190fe
...
...
@@ -23,10 +23,8 @@
#include <string.h>
UPnPDevice
::~
UPnPDevice
()
noexcept
{
/* this destructor exists here just so it won't get inlined */
}
/* this destructor exists here just so it won't get inlined */
UPnPDevice
::~
UPnPDevice
()
noexcept
=
default
;
/**
* An XML parser which constructs an UPnP device object from the
...
...
src/song/Filter.cxx
View file @
6d3190fe
...
...
@@ -90,10 +90,8 @@ SongFilter::SongFilter(TagType tag, const char *value, bool fold_case)
StringFilter
(
value
,
fold_case
,
fold_case
,
false
)));
}
SongFilter
::~
SongFilter
()
{
/* this destructor exists here just so it won't get inlined */
}
/* this destructor exists here just so it won't get inlined */
SongFilter
::~
SongFilter
()
=
default
;
std
::
string
SongFilter
::
ToExpression
()
const
noexcept
...
...
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