DetachedSong: remove explicitly-defaulted copy/move constructors

Mentioning these doesn't make a difference.
This commit is contained in:
Max Kellermann 2017-02-08 09:40:29 +01:00
parent 29453ba196
commit 67b7d46432

View File

@ -79,8 +79,6 @@ class DetachedSong {
explicit DetachedSong(const LightSong &other);
public:
explicit DetachedSong(const DetachedSong &) = default;
explicit DetachedSong(const char *_uri)
:uri(_uri) {}
@ -95,8 +93,6 @@ public:
:uri(std::forward<U>(_uri)),
tag(std::move(_tag)) {}
DetachedSong(DetachedSong &&) = default;
~DetachedSong();
gcc_pure