From: kronbichler Date: Wed, 2 Mar 2011 17:04:59 +0000 (+0000) Subject: Initialize one variable to zero to eliminate a compiler/profiler warning on some... X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8ac443bb2a3ffcf0a6be6eb1acc021c544ca6f7d;p=dealii-svn.git 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 --- 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);