Skip to content

Commit

Permalink
Fix clippy::useless_asref
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeyBF committed Jan 16, 2024
1 parent fdb49ad commit e8b9a0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ext/examples/secondary_massey.rs
Original file line number Diff line number Diff line change
Expand Up @@ -221,8 +221,8 @@ fn main() -> anyhow::Result<()> {
let ch_lift = SecondaryChainHomotopy::new(
Arc::clone(&a),
Arc::clone(&b),
a_tau.as_ref().map(Arc::clone),
b_tau.as_ref().map(Arc::clone),
a_tau.clone(),
b_tau.clone(),
Arc::clone(&chain_homotopy),
);

Expand Down

0 comments on commit e8b9a0b

Please sign in to comment.