Skip to content

Commit

Permalink
fix: don’t panic in EPA (#212)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebcrozet committed Jun 23, 2024
1 parent 96f680f commit b25920f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/query/epa/epa3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,11 @@ impl Face {
} else if self.pts[1] == id {
2
} else {
assert_eq!(self.pts[2], id);
log::debug!(
"Hit unexpected state in EPA: found index {}, expected: {}.",
self.pts[2],
id
);
0
}
}
Expand Down

0 comments on commit b25920f

Please sign in to comment.