Commit 67b7d464 authored by Max Kellermann's avatar Max Kellermann

DetachedSong: remove explicitly-defaulted copy/move constructors

Mentioning these doesn't make a difference.
parent 29453ba1
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment