Skip to content
This repository was archived by the owner on Nov 28, 2025. It is now read-only.

Commit 3b788f6

Browse files
[causal-filter] Fix Eigen::Index
1 parent 0b791fc commit 3b788f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/sot/torque_control/utils/causal-filter.hh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ public:
4141
private:
4242
double m_dt; /// sampling timestep of the input signal
4343
int m_x_size;
44-
Eigen::Index m_filter_order_m;
45-
Eigen::Index m_filter_order_n;
44+
Eigen::VectorXd::Index m_filter_order_m;
45+
Eigen::VectorXd::Index m_filter_order_n;
4646

4747
Eigen::VectorXd m_filter_numerator;
4848
Eigen::VectorXd m_filter_denominator;

0 commit comments

Comments
 (0)