We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 355c91e commit 56a8e66Copy full SHA for 56a8e66
src/impg.rs
@@ -299,12 +299,12 @@ impl Impg {
299
}
300
);
301
results.push(adjusted_interval);
302
- }
303
304
- if metadata.query_id != current_target {
305
- let todo_range = (metadata.query_id, adjusted_query_start, adjusted_query_end);
306
- if !visited.insert(todo_range) {
307
- stack.push(todo_range);
+ if metadata.query_id != current_target {
+ let todo_range = (metadata.query_id, adjusted_query_start, adjusted_query_end);
+ if !visited.insert(todo_range) {
+ stack.push(todo_range);
+ }
308
309
310
});
0 commit comments