From df80deb0708f9abe911dc3533c0d3b310f73650c Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 15 Jan 2014 11:52:17 +0100 Subject: DetachedSong: remove misplaced std::move() --- src/DetachedSong.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v1.2.3