mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
fix compilation with MSVC
This commit is contained in:
@@ -245,10 +245,10 @@ class DynamicSparseMatrix
|
|||||||
}
|
}
|
||||||
|
|
||||||
template<typename OtherDerived>
|
template<typename OtherDerived>
|
||||||
inline DynamicSparseMatrix(const SparseMatrixBase<OtherDerived>& other)
|
explicit inline DynamicSparseMatrix(const SparseMatrixBase<OtherDerived>& other)
|
||||||
: m_innerSize(0)
|
: m_innerSize(0)
|
||||||
{
|
{
|
||||||
*this = other.derived();
|
Base::operator=(other.derived());
|
||||||
}
|
}
|
||||||
|
|
||||||
inline DynamicSparseMatrix(const DynamicSparseMatrix& other)
|
inline DynamicSparseMatrix(const DynamicSparseMatrix& other)
|
||||||
|
|||||||
Reference in New Issue
Block a user