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);
|
explicit DetachedSong(const LightSong &other);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
explicit DetachedSong(const DetachedSong &) = default;
|
|
||||||
|
|
||||||
explicit DetachedSong(const char *_uri)
|
explicit DetachedSong(const char *_uri)
|
||||||
:uri(_uri) {}
|
:uri(_uri) {}
|
||||||
|
|
||||||
@ -95,8 +93,6 @@ public:
|
|||||||
:uri(std::forward<U>(_uri)),
|
:uri(std::forward<U>(_uri)),
|
||||||
tag(std::move(_tag)) {}
|
tag(std::move(_tag)) {}
|
||||||
|
|
||||||
DetachedSong(DetachedSong &&) = default;
|
|
||||||
|
|
||||||
~DetachedSong();
|
~DetachedSong();
|
||||||
|
|
||||||
gcc_pure
|
gcc_pure
|
||||||
|
Loading…
Reference in New Issue
Block a user