use sort_unstable to sort primitive types
It's not important to retain original order if we have &[1, 1, 2, 3] for example. clippy::stable_sort_primitive
This commit is contained in:
parent
d92155bf6a
commit
b4935e0726
6 changed files with 16 additions and 9 deletions
|
@ -230,8 +230,8 @@ fn get_arm_identity_info<'a, 'tcx>(
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
nop_stmts.sort();
|
||||
// We sort primitive usize here so we can use unstable sort
|
||||
nop_stmts.sort_unstable();
|
||||
|
||||
// Use one of the statements we're going to discard between the point
|
||||
// where the storage location for the variant field becomes live and
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue