Skip to content

Commit eda4629

Browse files
committed
fix compilation
1 parent 8f3af71 commit eda4629

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/changeset.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,9 @@ impl FromIterator<Change> for ChangeSet {
5959
}
6060
}
6161
for release in releases.values_mut() {
62-
release.changes.sort_by_key(|change| change.unique_id)
62+
release
63+
.changes
64+
.sort_by(|first, second| first.unique_id.cmp(&second.unique_id));
6365
}
6466
Self { releases }
6567
}

0 commit comments

Comments
 (0)