Commit 483b1f51 authored by Max Kellermann's avatar Max Kellermann

DetachedSong: remove parameter names from "defaulted" constructors

Suppresses gcc warnings.
parent ecac7a62
......@@ -65,7 +65,7 @@ class DetachedSong {
explicit DetachedSong(const LightSong &other);
public:
explicit DetachedSong(const DetachedSong &other) = default;
explicit DetachedSong(const DetachedSong &) = default;
explicit DetachedSong(const char *_uri)
:uri(_uri),
......@@ -85,7 +85,7 @@ public:
tag(std::move(_tag)),
mtime(0), start_ms(0), end_ms(0) {}
DetachedSong(DetachedSong &&other) = default;
DetachedSong(DetachedSong &&) = default;
gcc_pure
const char *GetURI() const {
......
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