mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-09-13 18:03:13 +08:00
fix compilation with MSVC
This commit is contained in:
parent
4489c56c9e
commit
1526de96a0
@ -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)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user