Merge remote-tracking branches 'neheb/j', 'neheb/f', 'neheb/qwe' and 'neheb/hgf'
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user