DetachedSong: remove parameter names from "defaulted" constructors

Suppresses gcc warnings.
This commit is contained in:
Max Kellermann 2014-01-21 21:06:46 +01:00
parent ecac7a629e
commit 483b1f51c9
1 changed files with 2 additions and 2 deletions

View File

@ -65,7 +65,7 @@ class DetachedSong {
explicit DetachedSong(const LightSong &other);
public:
explicit DetachedSong(const DetachedSong &other) = default;
explicit DetachedSong(const DetachedSong &) = default;
explicit DetachedSong(const char *_uri)
:uri(_uri),
@ -85,7 +85,7 @@ public:
tag(std::move(_tag)),
mtime(0), start_ms(0), end_ms(0) {}
DetachedSong(DetachedSong &&other) = default;
DetachedSong(DetachedSong &&) = default;
gcc_pure
const char *GetURI() const {