Skip to content

Commit 80c1c7f

Browse files
committed
decompositions: fix to int default type for PermutationMatrix
1 parent 9133ed0 commit 80c1c7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/eigenpy/decompositions/PermutationMatrix.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
namespace eigenpy {
1212

1313
template <int SizeAtCompileTime, int MaxSizeAtCompileTime = SizeAtCompileTime,
14-
typename StorageIndex_ = EIGEN_DEFAULT_DENSE_INDEX_TYPE>
14+
typename StorageIndex_ = int>
1515
struct PermutationMatrixVisitor
1616
: public boost::python::def_visitor<PermutationMatrixVisitor<
1717
SizeAtCompileTime, MaxSizeAtCompileTime, StorageIndex_> > {

0 commit comments

Comments
 (0)