Commit df80deb0 authored by Max Kellermann's avatar Max Kellermann

DetachedSong: remove misplaced std::move()

parent 5fb72d7c
......@@ -74,7 +74,7 @@ public:
mtime(0), start_ms(0), end_ms(0) {}
explicit DetachedSong(const std::string &_uri)
:uri(std::move(_uri)),
:uri(_uri),
mtime(0), start_ms(0), end_ms(0) {}
explicit DetachedSong(std::string &&_uri)
......
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