From: hartmann Date: Tue, 11 May 1999 16:11:14 +0000 (+0000) Subject: remove 'const' in front of 'max_n_tmp_vectors' as the copy constructor needs it non... X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6fc2ba28d3ed097ca5ce443cf6bf5aca5aef46ae;p=dealii-svn.git remove 'const' in front of 'max_n_tmp_vectors' as the copy constructor needs it non-constant git-svn-id: https://svn.dealii.org/trunk@1318 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/include/lac/solver_gmres.h b/deal.II/lac/include/lac/solver_gmres.h index 32058f62bd..c5cd615dba 100644 --- a/deal.II/lac/include/lac/solver_gmres.h +++ b/deal.II/lac/include/lac/solver_gmres.h @@ -84,7 +84,7 @@ class SolverGMRES : public Solver * Maximum number of * tmp vectors. */ - const unsigned int max_n_tmp_vectors; + unsigned int max_n_tmp_vectors; }; /**