Integrate all the progress into master #6

Merged
jaby merged 595 commits from ToolBox into main 2025-01-01 13:17:44 +00:00
1 changed files with 3 additions and 0 deletions
Showing only changes of commit bca17e4112 - Show all commits

View File

@ -27,6 +27,9 @@ fn process<F: std::iter::Iterator<Item=String>>(mut line_iter:F) -> Result<Vec<S
}
}
sections.sort_by(|left, right| {
left.adr.cmp(&right.adr)
});
Ok(sections)
}