[wpimath] Remove unnecessary NOLINT in LinearPlantInversionFeedforward (NFC) (#4155)

This commit is contained in:
Tyler Veness
2022-04-08 21:31:42 -07:00
committed by GitHub
parent 975171609e
commit aef4b16d4c

View File

@@ -123,7 +123,7 @@ class LinearPlantInversionFeedforward {
*/
Eigen::Vector<double, Inputs> Calculate(
const Eigen::Vector<double, States>& nextR) {
return Calculate(m_r, nextR); // NOLINT
return Calculate(m_r, nextR);
}
/**