Skip to content

Commit 57d5f73

Browse files
committed
[eiquadprog-rt] Remove comments using Eigen::AutoAlign
1 parent 3713416 commit 57d5f73

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

include/eiquadprog/eiquadprog-rt.hpp

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -58,22 +58,12 @@
5858
template<int Rows, int Cols>
5959
struct RtMatrixX
6060
{
61-
// typedef Eigen::Matrix<double, Eigen::Dynamic, Eigen::Dynamic, Eigen::AutoAlign, Rows, Cols> d;
62-
//
63-
// FIXME: Eigen::AutoAlign does not work with single-row matrices
64-
// typedef Eigen::Matrix<double, Rows, Cols, Eigen::AutoAlign> d;
6561
typedef Eigen::Matrix<double, Rows, Cols> d;
6662
};
6763

6864
template<int Rows>
6965
struct RtVectorX
7066
{
71-
// typedef Eigen::Matrix<double, Eigen::Dynamic, 1, Eigen::AutoAlign, Rows, 1> d;
72-
// typedef Eigen::Matrix<int, Eigen::Dynamic, 1, Eigen::AutoAlign, Rows, 1> i;
73-
74-
// FIXME: Eigen::AutoAlign does not work with single-row matrices
75-
// typedef Eigen::Matrix<double, Rows, 1, Eigen::AutoAlign> d;
76-
// typedef Eigen::Matrix<int, Rows, 1, Eigen::AutoAlign> i;
7767
typedef Eigen::Matrix<double, Rows, 1> d;
7868
typedef Eigen::Matrix<int, Rows, 1> i;
7969
};

0 commit comments

Comments
 (0)