| 6280eeca | 14-Sep-2021 |
Jose E. Roman <jroman@dsic.upv.es> |
Fix compile warning
petsc/src/mat/impls/dense/seq/dense.c: In function ‘MatMatSolveTranspose_SeqDense_QR’: petsc/src/mat/impls/dense/seq/dense.c:729:8: error: ‘y’ may be used uninitialized in this f
Fix compile warning
petsc/src/mat/impls/dense/seq/dense.c: In function ‘MatMatSolveTranspose_SeqDense_QR’: petsc/src/mat/impls/dense/seq/dense.c:729:8: error: ‘y’ may be used uninitialized in this function [-Werror=maybe-uninitialized] y = *_y; ~~~~~^~~~~ petsc/src/mat/impls/dense/seq/dense.c:817:19: note: ‘y’ was declared here PetscScalar *y; ^
show more ...
|