diff --git a/Eigen/src/CholmodSupport/CholmodSupport.h b/Eigen/src/CholmodSupport/CholmodSupport.h index 44a51557f..26abaf48f 100644 --- a/Eigen/src/CholmodSupport/CholmodSupport.h +++ b/Eigen/src/CholmodSupport/CholmodSupport.h @@ -141,8 +141,8 @@ template MappedSparseMatrix viewAsEigen(cholmod_sparse& cm) { return MappedSparseMatrix - (cm.nrow, cm.ncol, reinterpret_cast(cm.p)[cm.ncol], - reinterpret_cast(cm.p), reinterpret_cast(cm.i),reinterpret_cast(cm.x) ); + (cm.nrow, cm.ncol, static_cast(cm.p)[cm.ncol], + static_cast(cm.p), static_cast(cm.i),static_cast(cm.x) ); } enum CholmodMode { diff --git a/Eigen/src/OrderingMethods/Ordering.h b/Eigen/src/OrderingMethods/Ordering.h index f5757b319..36733fb9f 100644 --- a/Eigen/src/OrderingMethods/Ordering.h +++ b/Eigen/src/OrderingMethods/Ordering.h @@ -82,7 +82,7 @@ class AMDOrdering template void operator()(const SparseSelfAdjointView& mat, PermutationType& perm) { - SparseMatrix C = mat; + SparseMatrix C; C = mat; // Call the AMD routine // m_mat.prune(keep_diag()); //Remove the diagonal elements @@ -104,7 +104,7 @@ class NaturalOrdering /** Compute the permutation vector from a column-major sparse matrix */ template - void operator()(const MatrixType& mat, PermutationType& perm) + void operator()(const MatrixType& /*mat*/, PermutationType& perm) { perm.resize(0); } diff --git a/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h b/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h index a3880c9f8..17b764a37 100644 --- a/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h +++ b/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h @@ -49,7 +49,7 @@ namespace Eigen { * R is the sparse triangular factor. Use matrixQR() to get it as SparseMatrix. * NOTE : The Index type of R is always UF_long. You can get it with SPQR::Index * - * \tparam _MatrixType The type of the sparse matrix A, must be a SparseMatrix<>, either row-major or column-major. + * \tparam _MatrixType The type of the sparse matrix A, must be a column-major SparseMatrix<> * NOTE * */ @@ -61,7 +61,7 @@ class SPQR typedef typename _MatrixType::RealScalar RealScalar; typedef UF_long Index ; typedef SparseMatrix MatrixType; - typedef PermutationMatrix PermutationType; + typedef PermutationMatrix PermutationType; public: SPQR() : m_ordering(SPQR_ORDERING_DEFAULT), @@ -153,7 +153,7 @@ class SPQR MatrixType matrixQR() const { MatrixType R; - R = viewAsEigen(*m_cR); + R = viewAsEigen(*m_cR); return R; } /// Get an expression of the matrix Q