Skip to content
Snippets Groups Projects
Commit 80c1c7f1 authored by Justin Carpentier's avatar Justin Carpentier
Browse files

decompositions: fix to int default type for PermutationMatrix

parent 9133ed02
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,7 @@
namespace eigenpy {
template <int SizeAtCompileTime, int MaxSizeAtCompileTime = SizeAtCompileTime,
typename StorageIndex_ = EIGEN_DEFAULT_DENSE_INDEX_TYPE>
typename StorageIndex_ = int>
struct PermutationMatrixVisitor
: public boost::python::def_visitor<PermutationMatrixVisitor<
SizeAtCompileTime, MaxSizeAtCompileTime, StorageIndex_> > {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment