Merge pull request #536 from LnL7/no-warning

fix sort warning
This commit is contained in:
Daiderd Jordan 2020-11-04 22:44:23 +01:00 committed by GitHub
commit 524cd74056
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -311,7 +311,7 @@ impl<'a> EvaluationStatsDiff<'a> {
);
let mut keys = data.keys().cloned().collect::<Vec<&str>>();
keys.sort();
keys.sort_unstable();
let rows = keys
.into_iter()