diff options
author | Lioncash <mathew1800@gmail.com> | 2018-07-19 16:34:09 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-07-19 16:34:11 +0200 |
commit | 5da4c78c6a1b6bef2ec3de49ef9688d548c376aa (patch) | |
tree | 66bfb923cff787a659f07c221534616616fb0194 | |
parent | filesystem: Use std::string's empty() function instead of comparing against a literal (diff) | |
download | yuzu-5da4c78c6a1b6bef2ec3de49ef9688d548c376aa.tar yuzu-5da4c78c6a1b6bef2ec3de49ef9688d548c376aa.tar.gz yuzu-5da4c78c6a1b6bef2ec3de49ef9688d548c376aa.tar.bz2 yuzu-5da4c78c6a1b6bef2ec3de49ef9688d548c376aa.tar.lz yuzu-5da4c78c6a1b6bef2ec3de49ef9688d548c376aa.tar.xz yuzu-5da4c78c6a1b6bef2ec3de49ef9688d548c376aa.tar.zst yuzu-5da4c78c6a1b6bef2ec3de49ef9688d548c376aa.zip |
-rw-r--r-- | src/core/hle/service/filesystem/filesystem.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/hle/service/filesystem/filesystem.cpp b/src/core/hle/service/filesystem/filesystem.cpp index a6b8386a7..55282f3af 100644 --- a/src/core/hle/service/filesystem/filesystem.cpp +++ b/src/core/hle/service/filesystem/filesystem.cpp @@ -2,6 +2,8 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. +#include <utility> + #include "common/assert.h" #include "common/file_util.h" #include "core/core.h" @@ -30,7 +32,7 @@ static FileSys::VirtualDir GetDirectoryRelativeWrapped(FileSys::VirtualDir base, } VfsDirectoryServiceWrapper::VfsDirectoryServiceWrapper(FileSys::VirtualDir backing_) - : backing(backing_) {} + : backing(std::move(backing_)) {} std::string VfsDirectoryServiceWrapper::GetName() const { return backing->GetName(); |