aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-01-15 11:52:17 +0100
committerMax Kellermann <max@duempel.org>2014-01-15 11:52:17 +0100
commitdf80deb0708f9abe911dc3533c0d3b310f73650c (patch)
tree3e4fc2b445da0243519e9bfe1495e4409da102e8
parent5fb72d7c8fd2d80af1e19b835b95b1e886905242 (diff)
downloadmpd-df80deb0708f9abe911dc3533c0d3b310f73650c.tar.gz
mpd-df80deb0708f9abe911dc3533c0d3b310f73650c.tar.xz
mpd-df80deb0708f9abe911dc3533c0d3b310f73650c.zip
DetachedSong: remove misplaced std::move()
Diffstat (limited to '')
-rw-r--r--src/DetachedSong.hxx2
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)