From: guido Date: Fri, 25 Jun 1999 15:57:40 +0000 (+0000) Subject: Added missing pop X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bc171b616f6dfc235a405eef0dca2d7427268874;p=dealii-svn.git Added missing pop git-svn-id: https://svn.dealii.org/trunk@1471 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/include/lac/solver_cg.h b/deal.II/lac/include/lac/solver_cg.h index a38f40389c..7a3c383a3f 100644 --- a/deal.II/lac/include/lac/solver_cg.h +++ b/deal.II/lac/include/lac/solver_cg.h @@ -78,7 +78,10 @@ class SolverCG : public Solver * of the actual solution process and * deallocated at the end. */ - Vector *Vr, *Vp, *Vz, *VAp; + Vector *Vr; + Vector *Vp; + Vector *Vz; + Vector *VAp; /** * Within the iteration loop, the @@ -157,7 +160,7 @@ SolverCG::solve (const Matrix &A, memory.free(Vp); memory.free(Vz); memory.free(VAp); - + deallog.pop(); return success; };