diff options
author | Max Kellermann <max@duempel.org> | 2013-12-03 11:46:04 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-12-03 11:46:04 +0100 |
commit | 2fb61534a14666fa407d5c62f7e05d7e6885a531 (patch) | |
tree | fedd3d5ba90319b9a792bf38b2b3e27e171f207f /src | |
parent | 12b6c6ccf7311e09e7cfdc8c5c9c4e244f18b8ff (diff) | |
parent | 55ed7bd34ded1ff4fb2ea7f531bb5b46a4f14cca (diff) | |
download | mpd-2fb61534a14666fa407d5c62f7e05d7e6885a531.tar.gz mpd-2fb61534a14666fa407d5c62f7e05d7e6885a531.tar.xz mpd-2fb61534a14666fa407d5c62f7e05d7e6885a531.zip |
Merge branch 'master' of git://git.musicpd.org/dk/mpd
Diffstat (limited to 'src')
-rw-r--r-- | src/fs/AllocatedPath.hxx | 2 |
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) { |