From: kronbichler Date: Tue, 5 Mar 2013 06:38:16 +0000 (+0000) Subject: Fix a few compilation issues (warnings, deprecated include file). X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eb877ee2396b5d77b07bf7413978508128bcf1d8;p=dealii-svn.git Fix a few compilation issues (warnings, deprecated include file). git-svn-id: https://svn.dealii.org/trunk@28733 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-37/step-37.cc b/deal.II/examples/step-37/step-37.cc index 4d7f10d33c..4e03c487b1 100644 --- a/deal.II/examples/step-37/step-37.cc +++ b/deal.II/examples/step-37/step-37.cc @@ -30,8 +30,6 @@ #include #include -#include - #include #include #include @@ -1001,8 +999,6 @@ namespace Step37 void LaplaceProblem::solve () { Timer time; - GrowingVectorMemory<> vector_memory; - MGTransferPrebuilt > mg_transfer; mg_transfer.build_matrices(dof_handler); setup_time += time.wall_time(); @@ -1019,7 +1015,7 @@ namespace Step37 typedef PreconditionChebyshev > SMOOTHER; MGSmootherPrecondition > - mg_smoother(vector_memory); + mg_smoother; // Then, we initialize the smoother with our level matrices and the // mandatory additional data for the Chebyshev smoother. We use quite a