diff options
author | Max Kellermann <max@musicpd.org> | 2017-02-08 09:40:29 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2017-02-08 09:40:29 +0100 |
commit | 67b7d46432dd66cd94571489d231a4795ce4da39 (patch) | |
tree | dc23e5dc0cd2cca5e272c9ddcc27d930e43a671c | |
parent | 29453ba196db55816ee10fa9908c3e3fa0acd40f (diff) |
DetachedSong: remove explicitly-defaulted copy/move constructors
Mentioning these doesn't make a difference.
-rw-r--r-- | src/DetachedSong.hxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/DetachedSong.hxx b/src/DetachedSong.hxx index 083cad610..d6fcab698 100644 --- a/src/DetachedSong.hxx +++ b/src/DetachedSong.hxx @@ -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 |