Make sure that BlockImpl<const SparseMatrix> ctor is called with the right type

This commit is contained in:
Gael Guennebaud 2015-04-21 10:15:36 +02:00
parent d6a8b43b39
commit dbd12b4cda

View File

@ -285,6 +285,9 @@ public:
{}
using Base::operator=;
private:
template<typename Derived> BlockImpl(const SparseMatrixBase<Derived>& xpr, Index i);
template<typename Derived> BlockImpl(const SparseMatrixBase<Derived>& xpr);
};
//----------