mirror of
https://github.com/hannobraun/Fornjot
synced 2025-07-23 18:36:05 +00:00
Add lifetime to prepare for follow-on change
This commit is contained in:
parent
aeb5ac8131
commit
43b924ed69
@ -72,10 +72,10 @@ pub enum ShellValidationError {
|
|||||||
|
|
||||||
impl ShellValidationError {
|
impl ShellValidationError {
|
||||||
/// Check that each half-edge is part of a pair
|
/// Check that each half-edge is part of a pair
|
||||||
fn check_half_edge_pairs(
|
fn check_half_edge_pairs<'r>(
|
||||||
shell: &Shell,
|
shell: &'r Shell,
|
||||||
geometry: &Geometry,
|
geometry: &'r Geometry,
|
||||||
errors: &mut Vec<ValidationError>,
|
errors: &'r mut Vec<ValidationError>,
|
||||||
) {
|
) {
|
||||||
let mut unmatched_half_edges = BTreeMap::new();
|
let mut unmatched_half_edges = BTreeMap::new();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user