mirror of https://github.com/encounter/objdiff.git
Clippy fix
This commit is contained in:
parent
a8c2514377
commit
500965aacb
|
@ -166,7 +166,7 @@ fn symbol_list_ui(
|
|||
.show(ui, |ui| {
|
||||
if section.kind == ObjSectionKind::Code && reverse_function_order {
|
||||
for symbol in section.symbols.iter().rev() {
|
||||
if !symbol_matches_search(symbol, &lower_search) {
|
||||
if !symbol_matches_search(symbol, lower_search) {
|
||||
continue;
|
||||
}
|
||||
symbol_ui(
|
||||
|
@ -181,7 +181,7 @@ fn symbol_list_ui(
|
|||
}
|
||||
} else {
|
||||
for symbol in §ion.symbols {
|
||||
if !symbol_matches_search(symbol, &lower_search) {
|
||||
if !symbol_matches_search(symbol, lower_search) {
|
||||
continue;
|
||||
}
|
||||
symbol_ui(
|
||||
|
|
Loading…
Reference in New Issue