We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc46e17 commit 2612cdaCopy full SHA for 2612cda
objdiff-cli/src/cmd/report.rs
@@ -202,6 +202,9 @@ fn report_object(
202
for ((section_idx, section), section_diff) in
203
obj.sections.iter().enumerate().zip(&obj_diff.sections)
204
{
205
+ if section.kind == SectionKind::Unknown {
206
+ continue;
207
+ }
208
let section_match_percent = section_diff.match_percent.unwrap_or_else(|| {
209
// Support cases where we don't have a target object,
210
// assume complete means 100% match
0 commit comments