aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-12-03 11:46:04 +0100
committerMax Kellermann <max@duempel.org>2013-12-03 11:46:04 +0100
commit2fb61534a14666fa407d5c62f7e05d7e6885a531 (patch)
treefedd3d5ba90319b9a792bf38b2b3e27e171f207f /src
parent12b6c6ccf7311e09e7cfdc8c5c9c4e244f18b8ff (diff)
parent55ed7bd34ded1ff4fb2ea7f531bb5b46a4f14cca (diff)
downloadmpd-2fb61534a14666fa407d5c62f7e05d7e6885a531.tar.gz
mpd-2fb61534a14666fa407d5c62f7e05d7e6885a531.tar.xz
mpd-2fb61534a14666fa407d5c62f7e05d7e6885a531.zip
Merge branch 'master' of git://git.musicpd.org/dk/mpd
Diffstat (limited to '')
-rw-r--r--src/fs/AllocatedPath.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fs/AllocatedPath.hxx b/src/fs/AllocatedPath.hxx
index 5b5221b45..bc69bc618 100644
--- a/src/fs/AllocatedPath.hxx
+++ b/src/fs/AllocatedPath.hxx
@@ -53,7 +53,7 @@ class AllocatedPath {
AllocatedPath(const_pointer _value):value(_value) {}
- AllocatedPath(string &&_value):value(_value) {}
+ AllocatedPath(string &&_value):value(std::move(_value)) {}
static AllocatedPath Build(const_pointer a, size_t a_size,
const_pointer b, size_t b_size) {