From: Wolfgang Bangerth Date: Tue, 8 May 2018 06:46:52 +0000 (+0800) Subject: Align member variables in step-23. X-Git-Tag: v9.1.0-rc1~1188^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5773f514d94cf3846db37b638bfcb62e866258c5;p=dealii.git Align member variables in step-23. While there also use separate lines for each variable. --- diff --git a/examples/step-23/step-23.cc b/examples/step-23/step-23.cc index 7fc666c068..b18497dcb1 100644 --- a/examples/step-23/step-23.cc +++ b/examples/step-23/step-23.cc @@ -128,7 +128,7 @@ namespace Step23 FE_Q fe; DoFHandler dof_handler; - ConstraintMatrix constraints; + ConstraintMatrix constraints; SparsityPattern sparsity_pattern; SparseMatrix mass_matrix; @@ -140,9 +140,10 @@ namespace Step23 Vector old_solution_u, old_solution_v; Vector system_rhs; - double time_step, time; - unsigned int timestep_number; - const double theta; + double time_step + double time; + unsigned int timestep_number; + const double theta; };