From 0e0be0243bdf2fe8cbd88bd530ec7b7040b4d9da Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 1 Oct 2013 18:50:12 +0200 Subject: Daemon, Mapper: move-assign the Path objects --- src/Mapper.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/Mapper.cxx') diff --git a/src/Mapper.cxx b/src/Mapper.cxx index c07cb12d0..135621e17 100644 --- a/src/Mapper.cxx +++ b/src/Mapper.cxx @@ -109,7 +109,7 @@ mapper_set_music_dir(Path &&path) { assert(!path.IsNull()); - music_dir_fs = path; + music_dir_fs = std::move(path); music_dir_fs_length = music_dir_fs.length(); const auto utf8 = music_dir_fs.ToUTF8(); @@ -124,7 +124,7 @@ mapper_set_playlist_dir(Path &&path) { assert(!path.IsNull()); - playlist_dir_fs = path; + playlist_dir_fs = std::move(path); const auto utf8 = playlist_dir_fs.ToUTF8(); check_directory(utf8.c_str(), playlist_dir_fs); -- cgit v1.2.3