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 a8c2514 commit 500965aCopy full SHA for 500965a
src/views/symbol_diff.rs
@@ -166,7 +166,7 @@ fn symbol_list_ui(
166
.show(ui, |ui| {
167
if section.kind == ObjSectionKind::Code && reverse_function_order {
168
for symbol in section.symbols.iter().rev() {
169
- if !symbol_matches_search(symbol, &lower_search) {
+ if !symbol_matches_search(symbol, lower_search) {
170
continue;
171
}
172
symbol_ui(
@@ -181,7 +181,7 @@ fn symbol_list_ui(
181
182
} else {
183
for symbol in §ion.symbols {
184
185
186
187
0 commit comments