From: Wolfgang Bangerth Date: Sat, 11 Feb 2006 22:26:25 +0000 (+0000) Subject: Make a variable const. X-Git-Tag: v8.0.0~12357 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=df315447e7091a07c0274f2c462cd22a1193c0e1;p=dealii.git Make a variable const. git-svn-id: https://svn.dealii.org/trunk@12323 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-20/step-20.cc b/deal.II/examples/step-20/step-20.cc index 6ae8e9aab0..f67e11a3f0 100644 --- a/deal.II/examples/step-20/step-20.cc +++ b/deal.II/examples/step-20/step-20.cc @@ -807,7 +807,7 @@ class SchurComplement template void MixedLaplaceProblem::solve () { - InverseMatrix m_inverse (system_matrix.block(0,0)); + const InverseMatrix m_inverse (system_matrix.block(0,0)); Vector tmp (solution.block(0).size()); {