From: Wolfgang Bangerth Date: Tue, 22 May 2018 16:37:25 +0000 (+0800) Subject: Fix more wonky indentation (this time in step-4). X-Git-Tag: v9.1.0-rc1~1113^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F6649%2Fhead;p=dealii.git Fix more wonky indentation (this time in step-4). --- diff --git a/examples/step-4/step-4.cc b/examples/step-4/step-4.cc index 542ca23233..afcc23e80a 100644 --- a/examples/step-4/step-4.cc +++ b/examples/step-4/step-4.cc @@ -434,8 +434,8 @@ void Step4::assemble_system () template void Step4::solve () { - SolverControl solver_control (1000, 1e-12); - SolverCG<> solver (solver_control); + SolverControl solver_control (1000, 1e-12); + SolverCG<> solver (solver_control); solver.solve (system_matrix, solution, system_rhs, PreconditionIdentity());