From 8ac443bb2a3ffcf0a6be6eb1acc021c544ca6f7d Mon Sep 17 00:00:00 2001 From: kronbichler Date: Wed, 2 Mar 2011 17:04:59 +0000 Subject: [PATCH] Initialize one variable to zero to eliminate a compiler/profiler warning on some systems. git-svn-id: https://svn.dealii.org/trunk@23455 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/include/deal.II/lac/sparse_ilu.templates.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deal.II/include/deal.II/lac/sparse_ilu.templates.h b/deal.II/include/deal.II/lac/sparse_ilu.templates.h index 190c1f9cc1..9d870d7b3f 100644 --- a/deal.II/include/deal.II/lac/sparse_ilu.templates.h +++ b/deal.II/include/deal.II/lac/sparse_ilu.templates.h @@ -79,7 +79,7 @@ void SparseILU::decompose (const SparseMatrix &matrix, number * luval = this->SparseMatrix::val; const unsigned int N = this->m(); - unsigned int jrow; + unsigned int jrow = 0; std::vector iw (N, numbers::invalid_unsigned_int); -- 2.39.5