diff options
author | Max Kellermann <max@duempel.org> | 2014-01-15 11:52:17 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-01-15 11:52:17 +0100 |
commit | df80deb0708f9abe911dc3533c0d3b310f73650c (patch) | |
tree | 3e4fc2b445da0243519e9bfe1495e4409da102e8 /src/DetachedSong.hxx | |
parent | 5fb72d7c8fd2d80af1e19b835b95b1e886905242 (diff) |
DetachedSong: remove misplaced std::move()
Diffstat (limited to 'src/DetachedSong.hxx')
-rw-r--r-- | src/DetachedSong.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DetachedSong.hxx b/src/DetachedSong.hxx index bee6a73a4..2059d2367 100644 --- a/src/DetachedSong.hxx +++ b/src/DetachedSong.hxx @@ -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) |