diff options
author | Max Kellermann <max@duempel.org> | 2014-01-18 13:53:29 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-01-18 14:26:24 +0100 |
commit | 04b7648e004a5f21c615aa36c0801ae0986baf1e (patch) | |
tree | 9e4196edc32ea75efc5c4c1a72e2dd0e63ec9478 /src/db/upnp/Discovery.hxx | |
parent | be0759d4651126c0695c7ff83e1f2a9feca7ec4e (diff) | |
download | mpd-04b7648e004a5f21c615aa36c0801ae0986baf1e.tar.gz mpd-04b7648e004a5f21c615aa36c0801ae0986baf1e.tar.xz mpd-04b7648e004a5f21c615aa36c0801ae0986baf1e.zip |
db/upnp/Device: use ContentDirectoryDescriptor's move operator
Reduce bloat.
Diffstat (limited to 'src/db/upnp/Discovery.hxx')
-rw-r--r-- | src/db/upnp/Discovery.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/db/upnp/Discovery.hxx b/src/db/upnp/Discovery.hxx index 0ac731329..1f24135b2 100644 --- a/src/db/upnp/Discovery.hxx +++ b/src/db/upnp/Discovery.hxx @@ -65,6 +65,8 @@ class UPnPDeviceDirectory { */ class ContentDirectoryDescriptor { public: + ContentDirectoryDescriptor() = default; + ContentDirectoryDescriptor(const std::string &url, const char *description, time_t last, int exp) |