Skip to content

Commit 2feca17

Browse files
committed
Fix: clippy
1 parent 69e9d75 commit 2feca17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/rust-analyzer/crates/ide-db/src/symbol_index.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ impl Query {
381381
if non_type_for_type_only_query || !self.matches_assoc_mode(symbol.is_assoc) {
382382
continue;
383383
}
384-
if self.should_hide_query(&symbol) {
384+
if self.should_hide_query(symbol) {
385385
continue;
386386
}
387387
if self.mode.check(&self.query, self.case_sensitive, &symbol.name) {

0 commit comments

Comments
 (0)