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
c977d646
Commit
c977d646
authored
5 years ago
by
Max Kellermann
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branches 'neheb/j', 'neheb/f', 'neheb/qwe' and 'neheb/hgf'
parents
ac50bb5d
5d787806
6d3190fe
87f7b0f0
351a4a80
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
19 additions
and
29 deletions
+19
-29
CommandLine.cxx
src/CommandLine.cxx
+1
-1
StickerCommands.cxx
src/command/StickerCommands.cxx
+1
-1
Helpers.cxx
src/db/Helpers.cxx
+1
-1
ProxyDatabasePlugin.cxx
src/db/plugins/ProxyDatabasePlugin.cxx
+1
-1
Directory.cxx
src/db/plugins/upnp/Directory.cxx
+2
-4
Object.cxx
src/db/plugins/upnp/Object.cxx
+2
-4
OpusEncoderPlugin.cxx
src/encoder/plugins/OpusEncoderPlugin.cxx
+1
-1
QobuzClient.cxx
src/input/plugins/QobuzClient.cxx
+1
-1
Glue.cxx
src/lib/dbus/Glue.cxx
+1
-1
ContentDirectoryService.cxx
src/lib/upnp/ContentDirectoryService.cxx
+2
-4
Device.cxx
src/lib/upnp/Device.cxx
+2
-4
ixmlwrap.cxx
src/lib/upnp/ixmlwrap.cxx
+1
-1
Filter.cxx
src/song/Filter.cxx
+2
-4
SongSticker.cxx
src/sticker/SongSticker.cxx
+1
-1
No files found.
src/CommandLine.cxx
View file @
c977d646
...
...
@@ -78,7 +78,7 @@ constexpr auto USER_CONFIG_FILE_LOCATION1 = Path::FromFS(PATH_LITERAL(".mpdconf"
constexpr
auto
USER_CONFIG_FILE_LOCATION2
=
Path
::
FromFS
(
PATH_LITERAL
(
".mpd/mpd.conf"
));
constexpr
auto
USER_CONFIG_FILE_LOCATION_XDG
=
Path
::
FromFS
(
PATH_LITERAL
(
"mpd/mpd.conf"
));
#endif
}
}
// namespace
enum
Option
{
OPTION_KILL
,
...
...
This diff is collapsed.
Click to expand it.
src/command/StickerCommands.cxx
View file @
c977d646
...
...
@@ -36,7 +36,7 @@ struct sticker_song_find_data {
Response
&
r
;
const
char
*
name
;
};
}
}
// namespace
static
void
sticker_song_find_print_cb
(
const
LightSong
&
song
,
const
char
*
value
,
...
...
This diff is collapsed.
Click to expand it.
src/db/Helpers.cxx
View file @
c977d646
...
...
@@ -34,7 +34,7 @@ struct StringLess {
}
};
typedef
std
::
set
<
const
char
*
,
StringLess
>
StringSet
;
using
StringSet
=
std
::
set
<
const
char
*
,
StringLess
>
;
static
void
StatsVisitTag
(
DatabaseStats
&
stats
,
StringSet
&
artists
,
StringSet
&
albums
,
...
...
This diff is collapsed.
Click to expand it.
src/db/plugins/ProxyDatabasePlugin.cxx
View file @
c977d646
...
...
@@ -770,7 +770,7 @@ ReceiveEntities(struct mpd_connection *connection) noexcept
std
::
list
<
ProxyEntity
>
entities
;
struct
mpd_entity
*
entity
;
while
((
entity
=
mpd_recv_entity
(
connection
))
!=
nullptr
)
entities
.
push_back
(
ProxyEntity
(
entity
)
);
entities
.
emplace_back
(
entity
);
mpd_response_finish
(
connection
);
return
entities
;
...
...
This diff is collapsed.
Click to expand it.
src/db/plugins/upnp/Directory.cxx
View file @
c977d646
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
src/db/plugins/upnp/Object.cxx
View file @
c977d646
...
...
@@ -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
;
This diff is collapsed.
Click to expand it.
src/encoder/plugins/OpusEncoderPlugin.cxx
View file @
c977d646
...
...
@@ -387,7 +387,7 @@ OpusEncoder::SendTag(const Tag &tag)
GenerateHeaders
(
&
tag
);
}
}
}
// namespace
const
EncoderPlugin
opus_encoder_plugin
=
{
"opus"
,
...
...
This diff is collapsed.
Click to expand it.
src/input/plugins/QobuzClient.cxx
View file @
c977d646
...
...
@@ -44,7 +44,7 @@ public:
}
};
}
}
// namespace
QobuzClient
::
QobuzClient
(
EventLoop
&
event_loop
,
const
char
*
_base_url
,
...
...
This diff is collapsed.
Click to expand it.
src/lib/dbus/Glue.cxx
View file @
c977d646
...
...
@@ -56,4 +56,4 @@ Glue::OnDBusClosed() noexcept
// TODO: reconnect
}
}
}
// namespace ODBus
This diff is collapsed.
Click to expand it.
src/lib/upnp/ContentDirectoryService.cxx
View file @
c977d646
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
src/lib/upnp/Device.cxx
View file @
c977d646
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
src/lib/upnp/ixmlwrap.cxx
View file @
c977d646
...
...
@@ -38,4 +38,4 @@ getFirstElementValue(IXML_Document *doc, const char *name) noexcept
return
ixmlNode_getNodeValue
(
dnode
);
}
}
}
// namespace ixmlwrap
This diff is collapsed.
Click to expand it.
src/song/Filter.cxx
View file @
c977d646
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
src/sticker/SongSticker.cxx
View file @
c977d646
...
...
@@ -82,7 +82,7 @@ struct sticker_song_find_data {
void
*
user_data
);
void
*
user_data
;
};
}
}
// namespace
static
void
sticker_song_find_cb
(
const
char
*
uri
,
const
char
*
value
,
void
*
user_data
)
...
...
This diff is collapsed.
Click to expand it.
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