Skip to content

Commit

Permalink
fix a bug in under under compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
kaikalii committed Oct 6, 2024
1 parent 9972a58 commit 1aa59b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/algorithm/invert.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1018,7 +1018,7 @@ fn get_undered<'a>(
} else if input.len() < 3 {
generic()
} else {
(0..=input.len())
(1..=input.len())
.rev()
.find_map(|i| {
comp.undered_funcs
Expand Down

0 comments on commit 1aa59b4

Please sign in to comment.