Skip to content

Commit

Permalink
Specify that traj is generic
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherRabotin committed Sep 1, 2023
1 parent 5dfa322 commit 3fce28a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/od/process/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ where
info!("Processing {num_msrs} measurements with covariance mapping");

// We'll build a trajectory of the estimated states. This will be used to compute the measurements.
let mut traj = Traj::new();
let mut traj: Traj<S> = Traj::new();

let mut msr_accepted_cnt = 0;

Expand Down

0 comments on commit 3fce28a

Please sign in to comment.