Skip to content

Commit

Permalink
Fix compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
calcmogul committed Apr 26, 2024
1 parent a8edea5 commit 027706d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions wpimath/src/main/native/cpp/controller/ArmFeedforward.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@

using namespace frc;

units::volt_t Calculate(units::unit_t<Angle> currentAngle,
units::unit_t<Velocity> currentVelocity,
units::unit_t<Velocity> nextVelocity,
units::second_t dt) const {
units::volt_t ArmFeedforward::Calculate(units::unit_t<Angle> currentAngle,
units::unit_t<Velocity> currentVelocity,
units::unit_t<Velocity> nextVelocity,
units::second_t dt) const {
using VarMat = sleipnir::VariableMatrix;

// Arm dynamics
Expand Down

0 comments on commit 027706d

Please sign in to comment.