diff options
author | Maksim Denisov <denisov.maksim@huawei.com> | 2025-01-21 15:51:17 +0100 |
---|---|---|
committer | Maksim Denisov <denisov.maksim@huawei.com> | 2025-01-23 16:50:37 +0100 |
commit | 2f227907de0858dd18d7151252373002f482a6da (patch) | |
tree | 58b0731dd4e805c402c8696fe134491a857ab389 /src/other_tools/just_mr | |
parent | 19ddb7b9ef8bb862ed70528d3bc831eae1c59377 (diff) | |
download | justbuild-2f227907de0858dd18d7151252373002f482a6da.tar.gz |
JustMr: CommitGitMap: Remove unused arguments.
Diffstat (limited to 'src/other_tools/just_mr')
-rw-r--r-- | src/other_tools/just_mr/setup.cpp | 29 |
1 files changed, 14 insertions, 15 deletions
diff --git a/src/other_tools/just_mr/setup.cpp b/src/other_tools/just_mr/setup.cpp index a265abee..0f2b928a 100644 --- a/src/other_tools/just_mr/setup.cpp +++ b/src/other_tools/just_mr/setup.cpp @@ -332,21 +332,20 @@ auto MultiRepoSetup(std::shared_ptr<Configuration> const& config, auto resolve_symlinks_map = CreateResolveSymlinksMap(); - auto commit_git_map = CreateCommitGitMap( - &critical_git_op_map, - &import_to_git_map, - common_args.just_mr_paths, - common_args.alternative_mirrors, - common_args.git_path->string(), - *common_args.local_launcher, - serve ? &*serve : nullptr, - &native_storage_config, - compat_storage_config != nullptr ? &*compat_storage_config : nullptr, - &(*apis.local), - has_remote_api ? &*apis.remote : nullptr, - common_args.fetch_absent, - &progress, - common_args.jobs); + auto commit_git_map = + CreateCommitGitMap(&critical_git_op_map, + &import_to_git_map, + common_args.just_mr_paths, + common_args.alternative_mirrors, + common_args.git_path->string(), + *common_args.local_launcher, + serve ? &*serve : nullptr, + &native_storage_config, + &(*apis.local), + has_remote_api ? &*apis.remote : nullptr, + common_args.fetch_absent, + &progress, + common_args.jobs); auto content_git_map = CreateContentGitMap( &content_cas_map, |