fix: optimization: PVS-Studio warning V820
Replaced copying of the 'sources' variable with move semantics to improve performance. By moving instead of copying, we avoid unnecessary copying of data and enhance efficiency. Reported by: PVS-Studio Signed-off-by: Vyacheslav Ivanov <islavaivanov76@gmail.com>
This commit is contained in:
parent
6b3146f98a
commit
1068c3f4f4
@ -8,7 +8,7 @@
|
||||
PacksManager::PacksManager() = default;
|
||||
|
||||
void PacksManager::setSources(std::vector<fs::path> sources) {
|
||||
this->sources = sources;
|
||||
this->sources = std::move(sources);
|
||||
}
|
||||
|
||||
void PacksManager::scan() {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user