Fix compilation of sparse-triangular to dense assignment

This commit is contained in:
Gael Guennebaud
2015-11-04 17:02:32 +01:00
parent 36cd6daaae
commit f6b1deebab
2 changed files with 5 additions and 0 deletions

View File

@@ -64,6 +64,7 @@ struct Sparse2Dense {};
template<> struct AssignmentKind<SparseShape, SparseShape> { typedef Sparse2Sparse Kind; };
template<> struct AssignmentKind<SparseShape, SparseTriangularShape> { typedef Sparse2Sparse Kind; };
template<> struct AssignmentKind<DenseShape, SparseShape> { typedef Sparse2Dense Kind; };
template<> struct AssignmentKind<DenseShape, SparseTriangularShape> { typedef Sparse2Dense Kind; };
template<typename DstXprType, typename SrcXprType>