fix: Fix proc-macro change check being inverted

This commit is contained in:
Lukas Wirth 2022-04-16 12:36:31 +02:00
parent 40396b463e
commit 6f037da8cb

View File

@ -227,7 +227,7 @@ pub(crate) fn process_changes(&mut self) -> bool {
let crates = raw_database.relevant_crates(file.file_id);
let crate_graph = raw_database.crate_graph();
crates.iter().any(|&krate| !crate_graph[krate].is_proc_macro)
crates.iter().any(|&krate| crate_graph[krate].is_proc_macro)
});
true
}