partition_filesystem, vfs_real: Use std::move in ReplaceFileWithSubdirectory() where applicable

Avoids unnecessary atomic increment and decrement operations.
This commit is contained in:
Lioncash
2018-07-20 22:23:56 -04:00
parent 2b91386e15
commit d36e327ba6
2 changed files with 3 additions and 2 deletions

View File

@ -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;
}