qualify all calls to std::move

This commit is contained in:
Martin Michelsen
2023-05-15 23:46:19 -07:00
parent f813ed68df
commit 695e53a714
26 changed files with 145 additions and 141 deletions
+2 -2
View File
@@ -114,10 +114,10 @@ PatchFileIndex::PatchFileIndex(const string& root_dir)
make_json_int(f->size),
make_json_int(st.st_mtime),
make_json_int(f->crc32),
make_json_list(move(chunk_crcs_item)),
make_json_list(std::move(chunk_crcs_item)),
});
new_metadata_cache_json->as_dict().emplace(
relative_item_path, make_json_list(move(new_cache_item)));
relative_item_path, make_json_list(std::move(new_cache_item)));
should_write_metadata_cache = true;
} else {