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 0f14d9d commit 26b4ebbCopy full SHA for 26b4ebb
src/cargo/core/compiler/job_queue/mod.rs
@@ -645,7 +645,9 @@ impl<'gctx> DrainState<'gctx> {
645
if warning_handling != WarningHandling::Allow {
646
build_runner.bcx.gctx.shell().warn(warning)?;
647
}
648
- self.bump_warning_count(id, true, false);
+ let emitted = true;
649
+ let fixable = false;
650
+ self.bump_warning_count(id, emitted, fixable);
651
652
Message::WarningCount {
653
id,
0 commit comments