Merge commit 'aa0d551351' into clippy-subtree-update

This commit is contained in:
Philipp Krones 2024-10-03 16:32:51 +02:00
parent 4891dd4627
commit 277c4e4baf
183 changed files with 2484 additions and 848 deletions

View file

@ -68,7 +68,7 @@ impl Crate {
total_crates_to_lint: usize,
config: &LintcheckConfig,
lint_levels_args: &[String],
server: &Option<LintcheckServer>,
server: Option<&LintcheckServer>,
) -> Vec<ClippyCheckOutput> {
// advance the atomic index by one
let index = target_dir_index.fetch_add(1, Ordering::SeqCst);
@ -359,7 +359,7 @@ fn lintcheck(config: LintcheckConfig) {
crates.len(),
&config,
&lint_level_args,
&server,
server.as_ref(),
)
})
.collect();