DetachedSong: use "default" copy/move constructors

Remove unnecessary explicit code.
This commit is contained in:
Max Kellermann 2014-01-21 20:10:44 +01:00
parent 716bdc36fd
commit 21209ff46b
1 changed files with 2 additions and 10 deletions

View File

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