DetachedSong: remove explicitly-defaulted copy/move constructors
Mentioning these doesn't make a difference.
This commit is contained in:
parent
29453ba196
commit
67b7d46432
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user