file_util: std::move FST entries in ScanDirectoryTree()
Avoids unnecessary copies when building up the FST entries.
This commit is contained in:
parent
4a3c4f5f67
commit
cc6cb45536
@ -478,7 +478,7 @@ unsigned ScanDirectoryTree(const std::string& directory, FSTEntry& parent_entry,
|
|||||||
(*num_entries_out)++;
|
(*num_entries_out)++;
|
||||||
|
|
||||||
// Push into the tree
|
// Push into the tree
|
||||||
parent_entry.children.push_back(entry);
|
parent_entry.children.push_back(std::move(entry));
|
||||||
return true;
|
return true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user