diff options
| author | Laurenz <laurmaedje@gmail.com> | 2022-06-12 17:45:52 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2022-06-12 20:51:31 +0200 |
| commit | 7660978ee5d842648e244e2972273264d94ca37b (patch) | |
| tree | 74e1c8bc578afa616ddcd6c4c9e79c3c3d311d78 /src/model/locate.rs | |
| parent | 6e3b1a2c80428d581d00b9d65e1c45401df2e210 (diff) | |
Move `Arc` into `Frame`
Diffstat (limited to 'src/model/locate.rs')
| -rw-r--r-- | src/model/locate.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/model/locate.rs b/src/model/locate.rs index bda12ae9..f6432d43 100644 --- a/src/model/locate.rs +++ b/src/model/locate.rs @@ -272,7 +272,7 @@ impl PinBoard { } /// Locate all pins in the frames. - pub fn locate(&mut self, frames: &[Arc<Frame>]) { + pub fn locate(&mut self, frames: &[Frame]) { let mut flow = 0; for (i, frame) in frames.iter().enumerate() { locate_in_frame( |
