We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d58031b commit 07662c9Copy full SHA for 07662c9
src/cargo/core/compiler/job_queue/mod.rs
@@ -632,7 +632,9 @@ impl<'gctx> DrainState<'gctx> {
632
if warning_handling != WarningHandling::Allow {
633
build_runner.bcx.gctx.shell().warn(warning)?;
634
}
635
- self.bump_warning_count(id, true, false);
+ let emitted = true;
636
+ let fixable = false;
637
+ self.bump_warning_count(id, emitted, fixable);
638
639
Message::WarningCount {
640
id,
0 commit comments