mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-10 23:24:29 +00:00
Don't diagnose #[cfg]
in macros
This commit is contained in:
parent
070ecef249
commit
6e1c87eb92
1 changed files with 5 additions and 0 deletions
|
@ -135,6 +135,11 @@ pub(crate) fn diagnostics(
|
|||
res.borrow_mut().push(warning_with_fix(d, &sema));
|
||||
})
|
||||
.on::<hir::diagnostics::InactiveCode, _>(|d| {
|
||||
// If there's inactive code somewhere in a macro, don't propagate to the call-site.
|
||||
if d.display_source().file_id.expansion_info(db).is_some() {
|
||||
return;
|
||||
}
|
||||
|
||||
// Override severity and mark as unused.
|
||||
res.borrow_mut().push(
|
||||
Diagnostic::hint(sema.diagnostics_display_range(d).range, d.message())
|
||||
|
|
Loading…
Reference in a new issue