Skip to content
Snippets Groups Projects
Commit c4232a54 authored by Dr. Felix Tobias Schindler's avatar Dr. Felix Tobias Schindler
Browse files

[la.container.eigen.sparse] fix ctor

parent 955a0e03
No related branches found
No related tags found
No related merge requests found
......@@ -137,8 +137,8 @@ public:
}
explicit EigenRowMajorSparseMatrix(const int rr, const int cc = 0)
: EigenRowMajorSparseMatrix(internal::boost_numeric_cast<EIGEN_size_t>(rr),
internal::boost_numeric_cast<EIGEN_size_t>(cc))
: backend_(new BackendType(internal::boost_numeric_cast<EIGEN_size_t>(rr),
internal::boost_numeric_cast<EIGEN_size_t>(cc)))
{
}
......
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