From: Ralf Hartmann Date: Mon, 12 May 2003 14:25:16 +0000 (+0000) Subject: Fix small bug: Make it compile for general VECTOR classes. X-Git-Tag: v8.0.0~16538 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d48d7615761a9ae84967ef5d477ac64e059eec31;p=dealii.git Fix small bug: Make it compile for general VECTOR classes. git-svn-id: https://svn.dealii.org/trunk@7625 0785d39b-7218-0410-832d-ea1e28bc413d --- 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);