Skip to content

Commit

Permalink
Remove unnecessary lint allow
Browse files Browse the repository at this point in the history
  • Loading branch information
Jondolf committed Aug 24, 2024
1 parent 470010f commit c43e1c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dynamics/integrator/semi_implicit_euler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ use super::*;
/// the linear and angular velocity after `delta_seconds` have passed.
///
/// This uses [semi-implicit (symplectic) Euler integration](self).
#[allow(clippy::too_many_arguments, unused_variables)]
#[allow(clippy::too_many_arguments)]
pub fn integrate_velocity(
lin_vel: &mut Vector,
ang_vel: &mut AngularValue,
Expand Down

0 comments on commit c43e1c1

Please sign in to comment.