mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 12:19:59 +00:00
fsmitm_romfsbuild: std::move std::vector instances in Build()
Avoids making copies of large std::vector instances where it's trivially avoidable to do so.
This commit is contained in:
parent
7ecdaaf189
commit
861580f6d2
1 changed files with 2 additions and 2 deletions
|
@ -345,7 +345,7 @@ std::map<u64, VirtualFile> RomFSBuildContext::Build() {
|
||||||
|
|
||||||
std::vector<u8> header_data(sizeof(RomFSHeader));
|
std::vector<u8> header_data(sizeof(RomFSHeader));
|
||||||
std::memcpy(header_data.data(), &header, header_data.size());
|
std::memcpy(header_data.data(), &header, header_data.size());
|
||||||
out.emplace(0, std::make_shared<VectorVfsFile>(header_data));
|
out.emplace(0, std::make_shared<VectorVfsFile>(std::move(header_data)));
|
||||||
|
|
||||||
std::vector<u8> metadata(file_hash_table_size + file_table_size + dir_hash_table_size +
|
std::vector<u8> metadata(file_hash_table_size + file_table_size + dir_hash_table_size +
|
||||||
dir_table_size);
|
dir_table_size);
|
||||||
|
@ -358,7 +358,7 @@ std::map<u64, VirtualFile> RomFSBuildContext::Build() {
|
||||||
file_hash_table.size() * sizeof(u32));
|
file_hash_table.size() * sizeof(u32));
|
||||||
index += file_hash_table.size() * sizeof(u32);
|
index += file_hash_table.size() * sizeof(u32);
|
||||||
std::memcpy(metadata.data() + index, file_table.data(), file_table.size());
|
std::memcpy(metadata.data() + index, file_table.data(), file_table.size());
|
||||||
out.emplace(header.dir_hash_table_ofs, std::make_shared<VectorVfsFile>(metadata));
|
out.emplace(header.dir_hash_table_ofs, std::make_shared<VectorVfsFile>(std::move(metadata)));
|
||||||
|
|
||||||
return out;
|
return out;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue