DetachedSong: remove misplaced std::move()
This commit is contained in:
parent
5fb72d7c8f
commit
df80deb070
@ -74,7 +74,7 @@ public:
|
|||||||
mtime(0), start_ms(0), end_ms(0) {}
|
mtime(0), start_ms(0), end_ms(0) {}
|
||||||
|
|
||||||
explicit DetachedSong(const std::string &_uri)
|
explicit DetachedSong(const std::string &_uri)
|
||||||
:uri(std::move(_uri)),
|
:uri(_uri),
|
||||||
mtime(0), start_ms(0), end_ms(0) {}
|
mtime(0), start_ms(0), end_ms(0) {}
|
||||||
|
|
||||||
explicit DetachedSong(std::string &&_uri)
|
explicit DetachedSong(std::string &&_uri)
|
||||||
|
Loading…
Reference in New Issue
Block a user