From d48d7615761a9ae84967ef5d477ac64e059eec31 Mon Sep 17 00:00:00 2001 From: Ralf Hartmann Date: Mon, 12 May 2003 14:25:16 +0000 Subject: [PATCH] Fix small bug: Make it compile for general VECTOR classes. git-svn-id: https://svn.dealii.org/trunk@7625 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/include/multigrid/mg_smoother.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deal.II/deal.II/include/multigrid/mg_smoother.h b/deal.II/deal.II/include/multigrid/mg_smoother.h index 0f890c6821..b6899fa323 100644 --- a/deal.II/deal.II/include/multigrid/mg_smoother.h +++ b/deal.II/deal.II/include/multigrid/mg_smoother.h @@ -523,8 +523,8 @@ MGSmootherRelaxation::smooth( if (variable) steps2 *= (1<<(maxlevel-level)); - Vector* r = mem.alloc(); - Vector* d = mem.alloc(); + VECTOR* r = mem.alloc(); + VECTOR* d = mem.alloc(); r->reinit(u); d->reinit(u); -- 2.39.5