Skip to content

Commit 68cc316

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 3f99911 commit 68cc316

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

include/proxsuite/serialization/eigen.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ load(Archive& ar,
6666
#if EIGEN_VERSION_AT_LEAST(3, 4, 0)
6767
m.transposeInPlace();
6868
#else
69-
Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> m_t(m.transpose());
69+
Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> m_t(
70+
m.transpose());
7071
m = m_t;
7172
#endif
7273
}

0 commit comments

Comments
 (0)