summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-07-21 04:23:56 +0200
committerLioncash <mathew1800@gmail.com>2018-07-21 04:23:58 +0200
commitd36e327ba62fc853d75c413fd30ba38385dfa210 (patch)
tree9c1c715eebdeda015d94722cea5a65a3d2192d54 /src/core
parentpartition_filesystem, vfs_real: Use std::distance() instead of subtraction (diff)
downloadyuzu-d36e327ba62fc853d75c413fd30ba38385dfa210.tar
yuzu-d36e327ba62fc853d75c413fd30ba38385dfa210.tar.gz
yuzu-d36e327ba62fc853d75c413fd30ba38385dfa210.tar.bz2
yuzu-d36e327ba62fc853d75c413fd30ba38385dfa210.tar.lz
yuzu-d36e327ba62fc853d75c413fd30ba38385dfa210.tar.xz
yuzu-d36e327ba62fc853d75c413fd30ba38385dfa210.tar.zst
yuzu-d36e327ba62fc853d75c413fd30ba38385dfa210.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/file_sys/partition_filesystem.cpp2
-rw-r--r--src/core/file_sys/vfs_real.cpp3
2 files changed, 3 insertions, 2 deletions
diff --git a/src/core/file_sys/partition_filesystem.cpp b/src/core/file_sys/partition_filesystem.cpp
index fc37a40cc..c523a605a 100644
--- a/src/core/file_sys/partition_filesystem.cpp
+++ b/src/core/file_sys/partition_filesystem.cpp
@@ -109,7 +109,7 @@ bool PartitionFilesystem::ReplaceFileWithSubdirectory(VirtualFile file, VirtualD
pfs_files[offset] = pfs_files.back();
pfs_files.pop_back();
- pfs_dirs.emplace_back(dir);
+ pfs_dirs.emplace_back(std::move(dir));
return true;
}
diff --git a/src/core/file_sys/vfs_real.cpp b/src/core/file_sys/vfs_real.cpp
index fa0df1bbe..305d44a93 100644
--- a/src/core/file_sys/vfs_real.cpp
+++ b/src/core/file_sys/vfs_real.cpp
@@ -3,6 +3,7 @@
// Refer to the license.txt file included.
#include <iterator>
+#include <utility>
#include "common/common_paths.h"
#include "common/logging/log.h"
@@ -173,7 +174,7 @@ bool RealVfsDirectory::ReplaceFileWithSubdirectory(VirtualFile file, VirtualDir
files[offset] = files.back();
files.pop_back();
- subdirectories.emplace_back(dir);
+ subdirectories.emplace_back(std::move(dir));
return true;
}