diff --git a/src/od/process/export.rs b/src/od/process/export.rs index 2199cafb..e141ba35 100644 --- a/src/od/process/export.rs +++ b/src/od/process/export.rs @@ -269,7 +269,7 @@ where for (estimate, residual) in self.estimates.iter().zip(self.residuals.iter()) { if estimate.epoch() >= start && estimate.epoch() <= end { - estimates.push(estimate.clone()); + estimates.push(*estimate); residuals.push(residual.clone()); } }