Fix MSVC+CUDA issues.

This commit is contained in:
Antonio Sánchez
2022-04-08 18:05:32 +00:00
parent 734ed1efa6
commit 5ed7a86ae9
8 changed files with 26 additions and 32 deletions

View File

@@ -113,7 +113,7 @@ template<typename Derived> class SparseMatrixBase
Transpose<const Derived>
> AdjointReturnType;
typedef Transpose<Derived> TransposeReturnType;
typedef std::add_const_t<Transpose<const Derived> > ConstTransposeReturnType;
typedef Transpose<const Derived> ConstTransposeReturnType;
// FIXME storage order do not match evaluator storage order
typedef SparseMatrix<Scalar, Flags&RowMajorBit ? RowMajor : ColMajor, StorageIndex> PlainObject;