diff --git a/crates/fj-core/src/validate/shell.rs b/crates/fj-core/src/validate/shell.rs index b4da23679..d458e1fe1 100644 --- a/crates/fj-core/src/validate/shell.rs +++ b/crates/fj-core/src/validate/shell.rs @@ -29,7 +29,7 @@ impl Validate for Shell { .map(Into::into), ); errors.extend( - ShellValidationError::check_half_edge_pairs(self, geometry) + ShellValidationError::check_half_edge_pairs(self, geometry, config) .map(ShellValidationError::HalfEdgeHasNoSibling) .map(Into::into), ); @@ -79,6 +79,7 @@ impl ShellValidationError { fn check_half_edge_pairs<'r>( object: &'r Shell, geometry: &'r Geometry, + _: &'r ValidationConfig, ) -> impl Iterator + 'r { let mut unmatched_half_edges = BTreeMap::new();