DetachedSong: remove misplaced std::move()

This commit is contained in:
Max Kellermann 2014-01-15 11:52:17 +01:00
parent 5fb72d7c8f
commit df80deb070

View File

@ -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)