1
Fork 0
mirror of https://github.com/RGBCube/dix synced 2025-07-27 11:47:46 +00:00

feat: make diff order match nvd

This commit is contained in:
RGBCube 2025-05-09 21:53:11 +03:00 committed by bloxx12
parent 714fbbce6f
commit 50a9a673bd

View file

@ -38,9 +38,9 @@ struct Diff<T> {
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)] #[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
enum DiffStatus { enum DiffStatus {
Changed,
Added, Added,
Removed, Removed,
Changed,
} }
impl DiffStatus { impl DiffStatus {